jpl.mipl.mdms.FileService.spider.api.jaxb
Enum ActionTypeValue

java.lang.Object
  extended by java.lang.Enum<ActionTypeValue>
      extended by jpl.mipl.mdms.FileService.spider.api.jaxb.ActionTypeValue
All Implemented Interfaces:
Serializable, Comparable<ActionTypeValue>

public enum ActionTypeValue
extends Enum<ActionTypeValue>

Java class for actionTypeValue.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="actionTypeValue">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="DISCARD_TLM_PRODUCT"/>
     <enumeration value="DEFER_FILE_DELIVERY"/>
     <enumeration value="USE_LOCAL_CACHE"/>
     <enumeration value="IGNORE_PREDICT"/>
     <enumeration value="ABORT_PROCESSING"/>
     <enumeration value="OMIT_PRODUCT_GENERATION"/>
     <enumeration value="CANCEL_FILE_DELIVERY"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
ABORT_PROCESSING
           
CANCEL_FILE_DELIVERY
           
DEFER_FILE_DELIVERY
           
DISCARD_TLM_PRODUCT
           
IGNORE_PREDICT
           
OMIT_PRODUCT_GENERATION
           
USE_LOCAL_CACHE
           
 
Method Summary
static ActionTypeValue fromValue(String v)
           
 String value()
           
static ActionTypeValue valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ActionTypeValue[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DISCARD_TLM_PRODUCT

public static final ActionTypeValue DISCARD_TLM_PRODUCT

DEFER_FILE_DELIVERY

public static final ActionTypeValue DEFER_FILE_DELIVERY

USE_LOCAL_CACHE

public static final ActionTypeValue USE_LOCAL_CACHE

IGNORE_PREDICT

public static final ActionTypeValue IGNORE_PREDICT

ABORT_PROCESSING

public static final ActionTypeValue ABORT_PROCESSING

OMIT_PRODUCT_GENERATION

public static final ActionTypeValue OMIT_PRODUCT_GENERATION

CANCEL_FILE_DELIVERY

public static final ActionTypeValue CANCEL_FILE_DELIVERY
Method Detail

values

public static final ActionTypeValue[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(ActionTypeValue c : ActionTypeValue.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static ActionTypeValue 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

value

public String value()

fromValue

public static ActionTypeValue fromValue(String v)