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