public enum TextureTypeType extends java.lang.Enum<TextureTypeType>
Modifier and Type | Method and Description |
---|---|
static TextureTypeType |
fromValue(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static TextureTypeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextureTypeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="unknown") public static final TextureTypeType UNKNOWN
@SerializedName(value="specific") public static final TextureTypeType SPECIFIC
@SerializedName(value="typical") public static final TextureTypeType TYPICAL
public static TextureTypeType[] values()
for (TextureTypeType c : TextureTypeType.values()) System.out.println(c);
public static TextureTypeType 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<TextureTypeType>
public static TextureTypeType fromValue(java.lang.String value)