Package com.aspose.threed
Enum IndexDataType
- java.lang.Object
-
- java.lang.Enum<IndexDataType>
-
- com.aspose.threed.IndexDataType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IndexDataType>
public enum IndexDataType extends java.lang.Enum<IndexDataType>
The data type of the elements inIIndexBuffer
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IndexDataType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IndexDataType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INT32
public static final IndexDataType INT32
The index buffer's elements are 32bit int
-
INT16
public static final IndexDataType INT16
The index buffer's elements are 16bit int
-
-
Method Detail
-
values
public static IndexDataType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IndexDataType c : IndexDataType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IndexDataType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-