Enum Class GMLObjectType
- All Implemented Interfaces:
Serializable,Comparable<GMLObjectType>,Constable
Denotes the (abstract) type of GML object that may be defined in an application schema.
Clauses 21.3 through 21.11 describe the content-specific conformance classes listed
below.
- 21.3: Features and Feature Collections
- 21.4: Spatial Geometries
- 21.5: Spatial Topologies
- 21.6: Time
- 21.7: Coordinate Reference Systems
- 21.8: Coverages
- 21.9: Observations
- 21.10: Dictionaries and Definitions
- 21.11: Values
- See Also:
-
- "ISO 19136:2007, cl. 21.2.1"
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic GMLObjectTypeReturns the enum constant of this class with the specified name.static GMLObjectType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FEATURE_TYPE
-
GEOMETRY
-
TOPOLOGY
-
TIME
-
CRS
-
COVERAGE
-
OBSERVATION
-
DEFINITION
-
VALUE
-
-
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
-