public static enum Contact.COLUMNS extends Enum<Contact.COLUMNS>
| Enum Constant and Description |
|---|
email |
name |
partyId |
telefax |
telephone |
| Modifier and Type | Method and Description |
|---|---|
static Contact.COLUMNS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Contact.COLUMNS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Contact.COLUMNS name
public static final Contact.COLUMNS telephone
public static final Contact.COLUMNS telefax
public static final Contact.COLUMNS email
public static final Contact.COLUMNS partyId
public static Contact.COLUMNS[] values()
for (Contact.COLUMNS c : Contact.COLUMNS.values()) System.out.println(c);
public static Contact.COLUMNS valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2011–2019 Plain Source. All rights reserved.