- All Implemented Interfaces:
Serializable
,Comparable<ParameterDirection>
,Constable
,ControlledVocabulary
@UML(identifier="SV_ParameterDirection",
specification=ISO_19115)
public enum ParameterDirection
extends Enum<ParameterDirection>
implements ControlledVocabulary
Class of information to which the referencing entity applies.
- Since:
- 3.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionfamily()
Returns all constants defined by this enumeration type.Returns the UML identifier for this enumeration constant.static ParameterDirection
Returns the enum constant of this class with the specified name.static ParameterDirection[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface org.opengis.util.ControlledVocabulary
name, names, ordinal
-
Enum Constant Details
-
IN
@UML(identifier="in", obligation=CONDITIONAL, specification=ISO_19115) public static final ParameterDirection INThe parameter is an input parameter to the service instance. -
OUT
@UML(identifier="out", obligation=CONDITIONAL, specification=ISO_19115) public static final ParameterDirection OUTThe parameter is an output parameter to the service instance. -
IN_OUT
@UML(identifier="in/out", obligation=CONDITIONAL, specification=ISO_19115) public static final ParameterDirection IN_OUTThe parameter is both an input and output parameter to the service instance.
-
-
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
-
identifier
Returns the UML identifier for this enumeration constant.- Specified by:
identifier
in interfaceControlledVocabulary
- Returns:
- the ISO/OGC identifier for this constant.
- Since:
- 3.1
-
family
Returns all constants defined by this enumeration type. Invoking this method is equivalent to invokingvalues()
, except that this method can be invoked on an instance of theControlledVocabulary
interface (i.e. the enumeration type does not need to be known at compile-time).- Specified by:
family
in interfaceControlledVocabulary
- Returns:
- all values for this enumeration.
-