Enum Constant and Description |
---|
ALWAYS
showing always by tapping and dragging.
|
FADE
showing only when finger tapping with fadeIn-fadeOut animations.
|
LAST
showing only when finger released.
|
Modifier and Type | Method and Description |
---|---|
static FlagMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FlagMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlagMode ALWAYS
public static final FlagMode LAST
public static final FlagMode FADE
public static FlagMode[] values()
for (FlagMode c : FlagMode.values()) System.out.println(c);
public static FlagMode 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 namejava.lang.NullPointerException
- if the argument is null