public static enum MaskPosition.Point extends java.lang.Enum<MaskPosition.Point>
| Modifier and Type | Method and Description |
|---|---|
static MaskPosition.Point |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MaskPosition.Point[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="forehead") public static final MaskPosition.Point FOREHEAD
@SerializedName(value="eyes") public static final MaskPosition.Point EYES
@SerializedName(value="mouth") public static final MaskPosition.Point MOUTH
@SerializedName(value="chin") public static final MaskPosition.Point CHIN
public static MaskPosition.Point[] values()
for (MaskPosition.Point c : MaskPosition.Point.values()) System.out.println(c);
public static MaskPosition.Point 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