public static enum Party.COLUMNS extends Enum<Party.COLUMNS>
Enum Constant and Description |
---|
language |
name |
partyId |
postalAddressId |
vat |
website |
Modifier and Type | Method and Description |
---|---|
static Party.COLUMNS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Party.COLUMNS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Party.COLUMNS name
public static final Party.COLUMNS vat
public static final Party.COLUMNS language
public static final Party.COLUMNS website
public static final Party.COLUMNS postalAddressId
public static final Party.COLUMNS partyId
public static Party.COLUMNS[] values()
for (Party.COLUMNS c : Party.COLUMNS.values()) System.out.println(c);
public static Party.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.