public enum HouseNumberType extends Enum<HouseNumberType>
| Enum Constant and Description |
|---|
ASSOCIATED |
INTERPOLATION |
NODE |
| Modifier and Type | Method and Description |
|---|---|
static HouseNumberType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HouseNumberType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HouseNumberType INTERPOLATION
public static final HouseNumberType NODE
public static final HouseNumberType ASSOCIATED
public static HouseNumberType[] values()
for (HouseNumberType c : HouseNumberType.values()) System.out.println(c);
public static HouseNumberType 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 © 2015. All rights reserved.