Package org.opengis.metadata.acquisition
Class OperationType
- java.lang.Object
-
- org.opengis.util.CodeList<OperationType>
-
- org.opengis.metadata.acquisition.OperationType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OperationType>
@UML(identifier="MI_OperationTypeCode", specification=ISO_19115_2) public final class OperationType extends CodeList<OperationType>
Code indicating whether the data contained in this packet is real (originates from live-fly or other non-simulated operational sources), simulated (originates from target simulator sources), or synthesized (a mix of real and simulated data).- Since:
- 2.3
- Version:
- 3.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.opengis.util.CodeList
CodeList.Filter
-
-
Field Summary
Fields Modifier and Type Field Description static OperationType
REAL
Originates from live-fly or other non-simulated operational source.private static long
serialVersionUID
Serial number for compatibility with different versions.static OperationType
SIMULATED
Originates from target simulator sources.static OperationType
SYNTHESIZED
Mix of real and simulated data.private static java.util.List<OperationType>
VALUES
List of all enumerations of this type.
-
Constructor Summary
Constructors Modifier Constructor Description private
OperationType(java.lang.String name)
Constructs an enum with the given name.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description OperationType[]
family()
Returns the list of enumerations of the same kind than this enum.static OperationType
valueOf(java.lang.String code)
Returns the operation type that matches the given string, or returns a new one if none match it.static OperationType[]
values()
Returns the list ofOperationType
s.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serial number for compatibility with different versions.- See Also:
- Constant Field Values
-
VALUES
private static final java.util.List<OperationType> VALUES
List of all enumerations of this type. Must be declared before any enum declaration.
-
REAL
@UML(identifier="real", obligation=CONDITIONAL, specification=ISO_19115_2) public static final OperationType REAL
Originates from live-fly or other non-simulated operational source.
-
SIMULATED
@UML(identifier="simulated", obligation=CONDITIONAL, specification=ISO_19115_2) public static final OperationType SIMULATED
Originates from target simulator sources.
-
SYNTHESIZED
@UML(identifier="synthesized", obligation=CONDITIONAL, specification=ISO_19115_2) public static final OperationType SYNTHESIZED
Mix of real and simulated data.
-
-
Constructor Detail
-
OperationType
private OperationType(java.lang.String name)
Constructs an enum with the given name. The new enum is automatically added to the list returned byvalues()
.- Parameters:
name
- The enum name. This name must not be in use by an other enum of this type.
-
-
Method Detail
-
values
public static OperationType[] values()
Returns the list ofOperationType
s.- Returns:
- The list of codes declared in the current JVM.
-
family
public OperationType[] family()
Returns the list of enumerations of the same kind than this enum.- Specified by:
family
in classCodeList<OperationType>
- Returns:
- The codes of the same kind than this code.
-
valueOf
public static OperationType valueOf(java.lang.String code)
Returns the operation type that matches the given string, or returns a new one if none match it.- Parameters:
code
- The name of the code to fetch or to create.- Returns:
- A code matching the given name.
-
-