public static enum Element.DataType extends Enum<Element.DataType>
Enum Constant and Description |
---|
BOOLEAN |
FLOAT_32 |
FLOAT_64 |
MATRIX_2X2 |
MATRIX_3X3 |
MATRIX_4X4 |
NONE |
RS_ALLOCATION |
RS_ELEMENT |
RS_SAMPLER |
RS_SCRIPT |
RS_TYPE |
SIGNED_16 |
SIGNED_32 |
SIGNED_64 |
SIGNED_8 |
UNSIGNED_16 |
UNSIGNED_32 |
UNSIGNED_4_4_4_4 |
UNSIGNED_5_5_5_1 |
UNSIGNED_5_6_5 |
UNSIGNED_64 |
UNSIGNED_8 |
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 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