Package net.opengis.omeo.eop.v_2_0
Enum ProcessingModeValueType
- java.lang.Object
-
- java.lang.Enum<ProcessingModeValueType>
-
- net.opengis.omeo.eop.v_2_0.ProcessingModeValueType
-
- All Implemented Interfaces:
Serializable,Comparable<ProcessingModeValueType>
public enum ProcessingModeValueType extends Enum<ProcessingModeValueType>
Java class for ProcessingModeValueType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ProcessingModeValueType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="DATA_DRIVEN_PER_ACQUISITION"/> <enumeration value="DATA_DRIVEN_DAILY"/> <enumeration value="OFFLINE"/> <enumeration value="OTHER"/> <enumeration value="MULTI_MISSION"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATA_DRIVEN_DAILYProcessed dailyDATA_DRIVEN_PER_ACQUISITIONProcessed each pass or acquisitionMULTI_MISSIONComposite data from multiple missionsOFFLINEProcessed offlineOTHEROther type of processing mode
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProcessingModeValueTypefromValue(String v)Stringvalue()static ProcessingModeValueTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ProcessingModeValueType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATA_DRIVEN_PER_ACQUISITION
public static final ProcessingModeValueType DATA_DRIVEN_PER_ACQUISITION
Processed each pass or acquisition
-
DATA_DRIVEN_DAILY
public static final ProcessingModeValueType DATA_DRIVEN_DAILY
Processed daily
-
OFFLINE
public static final ProcessingModeValueType OFFLINE
Processed offline
-
OTHER
public static final ProcessingModeValueType OTHER
Other type of processing mode
-
MULTI_MISSION
public static final ProcessingModeValueType MULTI_MISSION
Composite data from multiple missions
-
-
Method Detail
-
values
public static ProcessingModeValueType[] 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 (ProcessingModeValueType c : ProcessingModeValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessingModeValueType 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 nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static ProcessingModeValueType fromValue(String v)
-
-