public enum IndicatorAnimationType extends java.lang.Enum<IndicatorAnimationType>
| Enum Constant and Description |
|---|
COLOR |
DROP |
FILL |
NONE |
SCALE |
SCALE_DOWN |
SLIDE |
SWAP |
THIN_WORM |
WORM |
| Modifier and Type | Method and Description |
|---|---|
static IndicatorAnimationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IndicatorAnimationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndicatorAnimationType NONE
public static final IndicatorAnimationType COLOR
public static final IndicatorAnimationType SCALE
public static final IndicatorAnimationType WORM
public static final IndicatorAnimationType SLIDE
public static final IndicatorAnimationType FILL
public static final IndicatorAnimationType THIN_WORM
public static final IndicatorAnimationType DROP
public static final IndicatorAnimationType SWAP
public static final IndicatorAnimationType SCALE_DOWN
public static IndicatorAnimationType[] values()
for (IndicatorAnimationType c : IndicatorAnimationType.values()) System.out.println(c);
public static IndicatorAnimationType 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