public static enum CropImageView.Guidelines extends java.lang.Enum<CropImageView.Guidelines>
| Enum Constant and Description |
|---|
OFF
Never show
|
ON
Always show
|
ON_TOUCH
Show when crop move action is live
|
| Modifier and Type | Method and Description |
|---|---|
static CropImageView.Guidelines |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CropImageView.Guidelines[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CropImageView.Guidelines OFF
public static final CropImageView.Guidelines ON_TOUCH
public static final CropImageView.Guidelines ON
public static CropImageView.Guidelines[] values()
for (CropImageView.Guidelines c : CropImageView.Guidelines.values()) System.out.println(c);
public static CropImageView.Guidelines 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