Package com.irurueta.geometry.io
Enum Class PropertyTypePLY
- All Implemented Interfaces:
Serializable,Comparable<PropertyTypePLY>,Constable
Enumeration defining supported property types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionList type for array valued elements, such as faces containing vertex indexes forming polygons.Scalar type for single valued elements, such as vertex coordinates. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic PropertyTypePLYReturns the enum constant of this class with the specified name.static PropertyTypePLY[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PROPERTY_PLY_SCALAR
Scalar type for single valued elements, such as vertex coordinates. -
PROPERTY_PLY_LIST
List type for array valued elements, such as faces containing vertex indexes forming polygons.
-
-
Constructor Details
-
PropertyTypePLY
private PropertyTypePLY()
-
-
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
-