public enum ViewType extends java.lang.Enum<ViewType>
Enum define for various operation happening on the PhotoEditorView while editing
| Enum Constant and Description |
|---|
BRUSH_DRAWING |
EMOJI |
IMAGE |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static ViewType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ViewType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewType BRUSH_DRAWING
public static final ViewType TEXT
public static final ViewType IMAGE
public static final ViewType EMOJI
public static ViewType[] values()
for (ViewType c : ViewType.values()) System.out.println(c);
public static ViewType 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