Enum Class ILspVertexAttribute.AttributeSemantics
java.lang.Object
java.lang.Enum<ILspVertexAttribute.AttributeSemantics>
com.luciad.view.lightspeed.services.vertexarray.ILspVertexAttribute.AttributeSemantics
- All Implemented Interfaces:
Serializable
,Comparable<ILspVertexAttribute.AttributeSemantics>
,Constable
- Enclosing interface:
ILspVertexAttribute
public static enum ILspVertexAttribute.AttributeSemantics
extends Enum<ILspVertexAttribute.AttributeSemantics>
Describes the semantics of a vertex attribute.
- Since:
- 2012.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThis vertex attribute describes the color of a vertex.This vertex attribute describes the normal vector of a vertex.This vertex attribute is used for all other (custom) vertex attributes.This vertex attribute describes the position of a vertex.This vertex attribute describes the texture coordinates of a vertex. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
POSITION
This vertex attribute describes the position of a vertex. -
TEXTURE_COORDINATES
This vertex attribute describes the texture coordinates of a vertex. -
COLOR
This vertex attribute describes the color of a vertex. -
NORMAL
This vertex attribute describes the normal vector of a vertex. -
OTHER
This vertex attribute is used for all other (custom) vertex attributes.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-