|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PenState>
ch.claudio.pen.input.PenState
public enum PenState
Encode the possible pen states.
Enum Constant Summary | |
---|---|
dragged
The pen is kept pressed while it is dragged. |
|
pressed
The pen was just pressed against the tablet. |
|
released
The pen is just released |
Method Summary | |
---|---|
static PenState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PenState[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PenState pressed
public static final PenState dragged
public static final PenState released
Method Detail |
---|
public static PenState[] values()
for (PenState c : PenState.values()) System.out.println(c);
public static PenState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |