Enum Class SurfaceInterpolationType
- All Implemented Interfaces:
Serializable
,Comparable<SurfaceInterpolationType>
,Constable
,Enumerator
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe 'Conic' literal object.The 'Elliptical' literal object.The 'None' literal object.The 'Parametric Curve' literal object.The 'Planar' literal object.The 'Polynomial Spline' literal object.The 'Rational Spline' literal object.The 'Spherical' literal object.The 'Tin' literal object.The 'Triangulated Spline' literal object. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
The 'Conic' literal value.static final int
The 'Elliptical' literal value.static final int
The 'None' literal value.static final int
The 'Parametric Curve' literal value.static final int
The 'Planar' literal value.static final int
The 'Polynomial Spline' literal value.static final int
The 'Rational Spline' literal value.static final int
The 'Spherical' literal value.static final int
The 'Tin' literal value.static final int
The 'Triangulated Spline' literal value.static final List<SurfaceInterpolationType>
A public read-only list of all the 'Surface Interpolation Type' enumerators. -
Method Summary
Modifier and TypeMethodDescriptionstatic SurfaceInterpolationType
get
(int value) Returns the 'Surface Interpolation Type' literal with the specified integer value.static SurfaceInterpolationType
Returns the 'Surface Interpolation Type' literal with the specified literal value.static SurfaceInterpolationType
Returns the 'Surface Interpolation Type' literal with the specified name.getName()
int
getValue()
toString()
Returns the literal value of the enumerator, which is its string representation.static SurfaceInterpolationType
Returns the enum constant of this class with the specified name.static SurfaceInterpolationType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
The 'None' literal object.- See Also:
-
PLANAR
The 'Planar' literal object.- See Also:
-
SPHERICAL
The 'Spherical' literal object.- See Also:
-
ELLIPTICAL
The 'Elliptical' literal object.- See Also:
-
CONIC
The 'Conic' literal object.- See Also:
-
TIN
The 'Tin' literal object.- See Also:
-
PARAMETRIC_CURVE
The 'Parametric Curve' literal object.- See Also:
-
POLYNOMIAL_SPLINE
The 'Polynomial Spline' literal object.- See Also:
-
RATIONAL_SPLINE
The 'Rational Spline' literal object.- See Also:
-
TRIANGULATED_SPLINE
The 'Triangulated Spline' literal object.- See Also:
-
-
Field Details
-
NONE_VALUE
public static final int NONE_VALUEThe 'None' literal value.If the meaning of 'None' literal object isn't clear, there really should be more of a description here...
- See Also:
-
PLANAR_VALUE
public static final int PLANAR_VALUEThe 'Planar' literal value.If the meaning of 'Planar' literal object isn't clear, there really should be more of a description here...
- See Also:
-
SPHERICAL_VALUE
public static final int SPHERICAL_VALUEThe 'Spherical' literal value.If the meaning of 'Spherical' literal object isn't clear, there really should be more of a description here...
- See Also:
-
ELLIPTICAL_VALUE
public static final int ELLIPTICAL_VALUEThe 'Elliptical' literal value.If the meaning of 'Elliptical' literal object isn't clear, there really should be more of a description here...
- See Also:
-
CONIC_VALUE
public static final int CONIC_VALUEThe 'Conic' literal value.If the meaning of 'Conic' literal object isn't clear, there really should be more of a description here...
- See Also:
-
TIN_VALUE
public static final int TIN_VALUEThe 'Tin' literal value.If the meaning of 'Tin' literal object isn't clear, there really should be more of a description here...
- See Also:
-
PARAMETRIC_CURVE_VALUE
public static final int PARAMETRIC_CURVE_VALUEThe 'Parametric Curve' literal value.If the meaning of 'Parametric Curve' literal object isn't clear, there really should be more of a description here...
- See Also:
-
POLYNOMIAL_SPLINE_VALUE
public static final int POLYNOMIAL_SPLINE_VALUEThe 'Polynomial Spline' literal value.If the meaning of 'Polynomial Spline' literal object isn't clear, there really should be more of a description here...
- See Also:
-
RATIONAL_SPLINE_VALUE
public static final int RATIONAL_SPLINE_VALUEThe 'Rational Spline' literal value.If the meaning of 'Rational Spline' literal object isn't clear, there really should be more of a description here...
- See Also:
-
TRIANGULATED_SPLINE_VALUE
public static final int TRIANGULATED_SPLINE_VALUEThe 'Triangulated Spline' literal value.If the meaning of 'Triangulated Spline' literal object isn't clear, there really should be more of a description here...
- See Also:
-
VALUES
A public read-only list of all the 'Surface Interpolation Type' enumerators.
-
-
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
-
get
Returns the 'Surface Interpolation Type' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
.
-
getByName
Returns the 'Surface Interpolation Type' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
.
-
get
Returns the 'Surface Interpolation Type' literal with the specified integer value.- Parameters:
value
- the integer value.- Returns:
- the matching enumerator or
null
.
-
getValue
public int getValue()- Specified by:
getValue
in interfaceEnumerator
-
getName
- Specified by:
getName
in interfaceEnumerator
-
getLiteral
- Specified by:
getLiteral
in interfaceEnumerator
-
toString
Returns the literal value of the enumerator, which is its string representation.- Overrides:
toString
in classEnum<SurfaceInterpolationType>
-