public enum WrapModeType extends java.lang.Enum<WrapModeType>
Modifier and Type | Method and Description |
---|---|
static WrapModeType |
fromValue(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static WrapModeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WrapModeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="none") public static final WrapModeType NONE
@SerializedName(value="wrap") public static final WrapModeType WRAP
@SerializedName(value="mirror") public static final WrapModeType MIRROR
@SerializedName(value="clamp") public static final WrapModeType CLAMP
@SerializedName(value="border") public static final WrapModeType BORDER
public static WrapModeType[] values()
for (WrapModeType c : WrapModeType.values()) System.out.println(c);
public static WrapModeType 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 nullpublic java.lang.String getValue()
public java.lang.String toString()
toString
in class java.lang.Enum<WrapModeType>
public static WrapModeType fromValue(java.lang.String value)