public static enum Element.DataType extends Enum<Element.DataType>
Modifier and Type | Method and Description |
---|---|
static Element.DataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Element.DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Element.DataType NONE
public static final Element.DataType FLOAT_32
public static final Element.DataType FLOAT_64
public static final Element.DataType SIGNED_8
public static final Element.DataType SIGNED_16
public static final Element.DataType SIGNED_32
public static final Element.DataType SIGNED_64
public static final Element.DataType UNSIGNED_8
public static final Element.DataType UNSIGNED_16
public static final Element.DataType UNSIGNED_32
public static final Element.DataType UNSIGNED_64
public static final Element.DataType BOOLEAN
public static final Element.DataType UNSIGNED_5_6_5
public static final Element.DataType UNSIGNED_5_5_5_1
public static final Element.DataType UNSIGNED_4_4_4_4
public static final Element.DataType MATRIX_4X4
public static final Element.DataType MATRIX_3X3
public static final Element.DataType MATRIX_2X2
public static final Element.DataType RS_ELEMENT
public static final Element.DataType RS_TYPE
public static final Element.DataType RS_ALLOCATION
public static final Element.DataType RS_SAMPLER
public static final Element.DataType RS_SCRIPT
public static final Element.DataType RS_MESH
public static final Element.DataType RS_PROGRAM_FRAGMENT
public static final Element.DataType RS_PROGRAM_VERTEX
public static final Element.DataType RS_PROGRAM_RASTER
public static final Element.DataType RS_PROGRAM_STORE
public static final Element.DataType RS_FONT
public static Element.DataType[] values()
for (Element.DataType c : Element.DataType.values()) System.out.println(c);
public static Element.DataType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is null