org.tolven.trim
Enum AddressPartType

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

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

Java class for AddressPartType.

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

 <simpleType name="AddressPartType">
   <restriction base="{urn:tolven-org:trim:4.0}cs">
     <enumeration value="AL"/>
     <enumeration value="ADL"/>
     <enumeration value="UNIT"/>
     <enumeration value="UNID"/>
     <enumeration value="DAL"/>
     <enumeration value="DINSTA"/>
     <enumeration value="DINSTQ"/>
     <enumeration value="DINST"/>
     <enumeration value="DMOD"/>
     <enumeration value="DMODID"/>
     <enumeration value="SAL"/>
     <enumeration value="BNR"/>
     <enumeration value="BNN"/>
     <enumeration value="BNS"/>
     <enumeration value="STR"/>
     <enumeration value="STB"/>
     <enumeration value="STTYP"/>
     <enumeration value="DIR"/>
     <enumeration value="INT"/>
     <enumeration value="CAR"/>
     <enumeration value="CEN"/>
     <enumeration value="CNT"/>
     <enumeration value="CPA"/>
     <enumeration value="DEL"/>
     <enumeration value="CTY"/>
     <enumeration value="POB"/>
     <enumeration value="ZIP"/>
     <enumeration value="PRE"/>
     <enumeration value="STA"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
ADL
           
AL
           
BNN
           
BNR
           
BNS
           
CAR
           
CEN
           
CNT
           
CPA
           
CTY
           
DAL
           
DEL
           
DINST
           
DINSTA
           
DINSTQ
           
DIR
           
DMOD
           
DMODID
           
INT
           
POB
           
PRE
           
SAL
           
STA
           
STB
           
STR
           
STTYP
           
UNID
           
UNIT
           
ZIP
           
 
Method Summary
static AddressPartType fromValue(java.lang.String v)
           
 java.lang.String value()
           
static AddressPartType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AddressPartType[] 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

AL

public static final AddressPartType AL

ADL

public static final AddressPartType ADL

UNIT

public static final AddressPartType UNIT

UNID

public static final AddressPartType UNID

DAL

public static final AddressPartType DAL

DINSTA

public static final AddressPartType DINSTA

DINSTQ

public static final AddressPartType DINSTQ

DINST

public static final AddressPartType DINST

DMOD

public static final AddressPartType DMOD

DMODID

public static final AddressPartType DMODID

SAL

public static final AddressPartType SAL

BNR

public static final AddressPartType BNR

BNN

public static final AddressPartType BNN

BNS

public static final AddressPartType BNS

STR

public static final AddressPartType STR

STB

public static final AddressPartType STB

STTYP

public static final AddressPartType STTYP

DIR

public static final AddressPartType DIR

INT

public static final AddressPartType INT

CAR

public static final AddressPartType CAR

CEN

public static final AddressPartType CEN

CNT

public static final AddressPartType CNT

CPA

public static final AddressPartType CPA

DEL

public static final AddressPartType DEL

CTY

public static final AddressPartType CTY

POB

public static final AddressPartType POB

ZIP

public static final AddressPartType ZIP

PRE

public static final AddressPartType PRE

STA

public static final AddressPartType STA
Method Detail

values

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

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

valueOf

public static AddressPartType 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 AddressPartType fromValue(java.lang.String v)