net.opengis.omeo.eop.v_2_0
Enum ProcessingModeValueType

java.lang.Object
  extended by java.lang.Enum<ProcessingModeValueType>
      extended by 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
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
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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 name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static ProcessingModeValueType fromValue(String v)


Copyright © 2008-2016. All Rights Reserved.