Package net.opengis.gml311
Enum KnotTypesType
- Object
- 
- Enum<KnotTypesType>
- 
- KnotTypesType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<KnotTypesType>,- Enumerator
 
 public enum KnotTypesType extends Enum<KnotTypesType> implements Enumerator A representation of the literals of the enumeration 'Knot Types Type', and utility methods for working with them. Defines allowed values for the knots` type. Uniform knots implies that all knots are of multiplicity 1 and they differ by a positive constant from the preceding knot. Knots are quasi-uniform iff they are of multiplicity (degree + 1) at the ends, of multiplicity 1 elsewhere, and they differ by a positive constant from the preceding knot.- See Also:
- Gml311Package.getKnotTypesType()
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description PIECEWISE_BEZIERThe 'Piecewise Bezier' literal object.QUASI_UNIFORMThe 'Quasi Uniform' literal object.UNIFORMThe 'Uniform' literal object.
 - 
Field SummaryFields Modifier and Type Field Description static intPIECEWISE_BEZIER_VALUEThe 'Piecewise Bezier' literal value.static intQUASI_UNIFORM_VALUEThe 'Quasi Uniform' literal value.static intUNIFORM_VALUEThe 'Uniform' literal value.static List<KnotTypesType>VALUESA public read-only list of all the 'Knot Types Type' enumerators.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static KnotTypesTypeget(int value)Returns the 'Knot Types Type' literal with the specified integer value.static KnotTypesTypeget(String literal)Returns the 'Knot Types Type' literal with the specified literal value.static KnotTypesTypegetByName(String name)Returns the 'Knot Types Type' literal with the specified name.StringgetLiteral()StringgetName()intgetValue()StringtoString()Returns the literal value of the enumerator, which is its string representation.static KnotTypesTypevalueOf(String name)Returns the enum constant of this type with the specified name.static KnotTypesType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
UNIFORMpublic static final KnotTypesType UNIFORM The 'Uniform' literal object.- See Also:
- UNIFORM_VALUE
 
 - 
QUASI_UNIFORMpublic static final KnotTypesType QUASI_UNIFORM The 'Quasi Uniform' literal object.- See Also:
- QUASI_UNIFORM_VALUE
 
 - 
PIECEWISE_BEZIERpublic static final KnotTypesType PIECEWISE_BEZIER The 'Piecewise Bezier' literal object.- See Also:
- PIECEWISE_BEZIER_VALUE
 
 
- 
 - 
Field Detail- 
UNIFORM_VALUEpublic static final int UNIFORM_VALUE The 'Uniform' literal value.If the meaning of 'Uniform' literal object isn't clear, there really should be more of a description here... - See Also:
- UNIFORM, Constant Field Values
 
 - 
QUASI_UNIFORM_VALUEpublic static final int QUASI_UNIFORM_VALUE The 'Quasi Uniform' literal value.If the meaning of 'Quasi Uniform' literal object isn't clear, there really should be more of a description here... - See Also:
- QUASI_UNIFORM, Constant Field Values
 
 - 
PIECEWISE_BEZIER_VALUEpublic static final int PIECEWISE_BEZIER_VALUE The 'Piecewise Bezier' literal value.If the meaning of 'Piecewise Bezier' literal object isn't clear, there really should be more of a description here... - See Also:
- PIECEWISE_BEZIER, Constant Field Values
 
 - 
VALUESpublic static final List<KnotTypesType> VALUES A public read-only list of all the 'Knot Types Type' enumerators.
 
- 
 - 
Method Detail- 
valuespublic static KnotTypesType[] 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 (KnotTypesType c : KnotTypesType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static KnotTypesType valueOf(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:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
getpublic static KnotTypesType get(String literal) Returns the 'Knot Types Type' literal with the specified literal value.- Parameters:
- literal- the literal.
- Returns:
- the matching enumerator or null.
 
 - 
getByNamepublic static KnotTypesType getByName(String name) Returns the 'Knot Types Type' literal with the specified name.- Parameters:
- name- the name.
- Returns:
- the matching enumerator or null.
 
 - 
getpublic static KnotTypesType get(int value) Returns the 'Knot Types Type' literal with the specified integer value.- Parameters:
- value- the integer value.
- Returns:
- the matching enumerator or null.
 
 - 
getValuepublic int getValue() - Specified by:
- getValuein interface- Enumerator
 
 - 
getNamepublic String getName() - Specified by:
- getNamein interface- Enumerator
 
 - 
getLiteralpublic String getLiteral() - Specified by:
- getLiteralin interface- Enumerator
 
 - 
toStringpublic String toString() Returns the literal value of the enumerator, which is its string representation.- Overrides:
- toStringin class- Enum<KnotTypesType>
 
 
- 
 
-