|
Java APG, Version 1.0 Author Lowell D. Thomas Copyright © Coast to Coast Research, Inc. 2011 |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<UMailbox.UdtNames>
com.coasttocoastresearch.examples.mailbox.UMailbox.UdtNames
public static enum UMailbox.UdtNames
This enum provides easy to remember enum constants for locating the UDT identifiers and names. The enum constants have the same spelling as the UDT names rendered in all caps with underscores replacing hyphens.
| Enum Constant Summary | |
|---|---|
E_LDH_STR
id = 1, name = "e_ldh-str" |
|
U_ATOM
id = 2, name = "u_atom" |
|
U_DCONTENT
id = 5, name = "u_dcontent" |
|
U_IPV6_HEX
id = 6, name = "u_ipv6-hex" |
|
U_LET_DIG
id = 0, name = "u_let-dig" |
|
U_SNUM
id = 3, name = "u_snum" |
|
U_STANDARDIZED_TAG
id = 4, name = "u_standardized-tag" |
|
| Method Summary | |
|---|---|
int |
udtID()
Associates the enum with an identifier for the UDT it represents. |
boolean |
udtMayBeEmpty()
Associates the enum with the "empty" attribute of the UDT it represents. |
java.lang.String |
udtName()
Associates the enum with the original grammar name of the UDT it represents. |
static UMailbox.UdtNames |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static UMailbox.UdtNames[] |
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 |
|---|
public static final UMailbox.UdtNames E_LDH_STR
1, name = "e_ldh-str"
public static final UMailbox.UdtNames U_ATOM
2, name = "u_atom"
public static final UMailbox.UdtNames U_DCONTENT
5, name = "u_dcontent"
public static final UMailbox.UdtNames U_IPV6_HEX
6, name = "u_ipv6-hex"
public static final UMailbox.UdtNames U_LET_DIG
0, name = "u_let-dig"
public static final UMailbox.UdtNames U_SNUM
3, name = "u_snum"
public static final UMailbox.UdtNames U_STANDARDIZED_TAG
4, name = "u_standardized-tag"
| Method Detail |
|---|
public int udtID()
public boolean udtMayBeEmpty()
"e_", false if it begins with "u_".public java.lang.String udtName()
public static UMailbox.UdtNames valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is nullpublic static UMailbox.UdtNames[] values()
for (UMailbox.UdtNames c : UMailbox.UdtNames.values()) System.out.println(c);
|
Java APG, Version 1.0 Author Lowell D. Thomas Copyright © Coast to Coast Research, Inc. 2011 |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||