Package com.aspose.threed
Enum CurveDimension
- java.lang.Object
-
- java.lang.Enum<CurveDimension>
-
- com.aspose.threed.CurveDimension
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CurveDimension>
,java.lang.constant.Constable
public enum CurveDimension extends java.lang.Enum<CurveDimension>
The dimension of the curves.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description THREE_DIMENSIONAL
The curves are three dimensional points.TWO_DIMENSIONAL
The curves are two dimensional points.
-
Method Summary
Modifier and Type Method Description static CurveDimension
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CurveDimension[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TWO_DIMENSIONAL
public static final CurveDimension TWO_DIMENSIONAL
The curves are two dimensional points.
-
THREE_DIMENSIONAL
public static final CurveDimension THREE_DIMENSIONAL
The curves are three dimensional points.
-
-
Method Detail
-
values
public static CurveDimension[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CurveDimension 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
-
-