org.jboss.soa.esb.common.bizclasses
Enum Address.ATTRIB
java.lang.Object
java.lang.Enum<Address.ATTRIB>
org.jboss.soa.esb.common.bizclasses.Address.ATTRIB
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Address.ATTRIB>
- Enclosing class:
- Address
public static enum Address.ATTRIB
- extends java.lang.Enum<Address.ATTRIB>
Method Summary |
static Address.ATTRIB |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Address.ATTRIB[] |
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 |
strNum
public static final Address.ATTRIB strNum
strLine1
public static final Address.ATTRIB strLine1
strLine2
public static final Address.ATTRIB strLine2
suite
public static final Address.ATTRIB suite
twnCty1
public static final Address.ATTRIB twnCty1
twnCty2
public static final Address.ATTRIB twnCty2
postalZip
public static final Address.ATTRIB postalZip
provSt
public static final Address.ATTRIB provSt
cntry
public static final Address.ATTRIB cntry
values
public static final Address.ATTRIB[] 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(Address.ATTRIB c : Address.ATTRIB.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static Address.ATTRIB 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