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