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 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(String v) |
String |
value() |
static ProcessingModeValueType |
valueOf(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static ProcessingModeValueType fromValue(String v)
Copyright © 2008–2023. All rights reserved.