org.tolven.trim
Enum NullFlavorType

java.lang.Object
  extended by java.lang.Enum<NullFlavorType>
      extended by org.tolven.trim.NullFlavorType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<NullFlavorType>

public enum NullFlavorType
extends java.lang.Enum<NullFlavorType>

Java class for NullFlavorType.

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

 <simpleType name="NullFlavorType">
   <restriction base="{urn:tolven-org:trim:4.0}cs">
     <enumeration value="OTH"/>
     <enumeration value="NINF"/>
     <enumeration value="PINF"/>
     <enumeration value="ASKU"/>
     <enumeration value="NAV"/>
     <enumeration value="UNK"/>
     <enumeration value="QS"/>
     <enumeration value="NASK"/>
     <enumeration value="TRC"/>
     <enumeration value="NI"/>
     <enumeration value="MSK"/>
     <enumeration value="NA"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
ASKU
           
MSK
           
NA
           
NASK
           
NAV
           
NI
           
NINF
           
OTH
           
PINF
           
QS
           
TRC
           
UNK
           
 
Method Summary
static NullFlavorType fromValue(java.lang.String v)
           
 java.lang.String value()
           
static NullFlavorType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NullFlavorType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

OTH

public static final NullFlavorType OTH

NINF

public static final NullFlavorType NINF

PINF

public static final NullFlavorType PINF

ASKU

public static final NullFlavorType ASKU

NAV

public static final NullFlavorType NAV

UNK

public static final NullFlavorType UNK

QS

public static final NullFlavorType QS

NASK

public static final NullFlavorType NASK

TRC

public static final NullFlavorType TRC

NI

public static final NullFlavorType NI

MSK

public static final NullFlavorType MSK

NA

public static final NullFlavorType NA
Method Detail

values

public static NullFlavorType[] 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 (NullFlavorType c : NullFlavorType.values())
    System.out.println(c);

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

valueOf

public static NullFlavorType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public java.lang.String value()

fromValue

public static NullFlavorType fromValue(java.lang.String v)