public static enum TouchImageView.State extends java.lang.Enum<TouchImageView.State>
| Enum Constant and Description |
|---|
ANIMATE_ZOOM |
DRAG |
FLING |
NONE |
ZOOM |
| Modifier and Type | Method and Description |
|---|---|
static TouchImageView.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TouchImageView.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TouchImageView.State NONE
public static final TouchImageView.State DRAG
public static final TouchImageView.State ZOOM
public static final TouchImageView.State FLING
public static final TouchImageView.State ANIMATE_ZOOM
public static TouchImageView.State[] values()
for (TouchImageView.State c : TouchImageView.State.values()) System.out.println(c);
public static TouchImageView.State 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