public enum ProcessingModeValueType extends java.lang.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 and Description |
|---|
DATA_DRIVEN_DAILY
Processed daily
|
DATA_DRIVEN_PER_ACQUISITION
Processed each pass or acquisition
|
MULTI_MISSION
Composite data from multiple missions
|
OFFLINE
Processed offline
|
OTHER
Other type of processing mode
|
| Modifier and Type | Method and Description |
|---|---|
static ProcessingModeValueType |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static ProcessingModeValueType |
valueOf(java.lang.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.
|
public static final ProcessingModeValueType DATA_DRIVEN_PER_ACQUISITION
public static final ProcessingModeValueType DATA_DRIVEN_DAILY
public static final ProcessingModeValueType OFFLINE
public static final ProcessingModeValueType OTHER
public static final ProcessingModeValueType MULTI_MISSION
public static ProcessingModeValueType[] values()
for (ProcessingModeValueType c : ProcessingModeValueType.values()) System.out.println(c);
public static ProcessingModeValueType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String value()
public static ProcessingModeValueType fromValue(java.lang.String v)
Copyright © 2008-2021. All Rights Reserved.