public static enum PlyWriter.DataType extends java.lang.Enum<PlyWriter.DataType>
Enum Constant and Description |
---|
CHAR |
DOUBLE |
FLOAT |
INT |
SHORT |
UCHAR |
UINT |
USHORT |
Modifier and Type | Method and Description |
---|---|
static PlyWriter.DataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlyWriter.DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlyWriter.DataType CHAR
public static final PlyWriter.DataType UCHAR
public static final PlyWriter.DataType SHORT
public static final PlyWriter.DataType USHORT
public static final PlyWriter.DataType INT
public static final PlyWriter.DataType UINT
public static final PlyWriter.DataType FLOAT
public static final PlyWriter.DataType DOUBLE
public static PlyWriter.DataType[] values()
for (PlyWriter.DataType c : PlyWriter.DataType.values()) System.out.println(c);
public static PlyWriter.DataType 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