public enum AddressResult extends java.lang.Enum<AddressResult>
| Enum Constant and Description |
|---|
ALL_LOCATED_ADDRESSES
All located addresses will be returned, effectively making results show up multiple times if there are multiple
located addresses
|
DEFAULT_ADDRESS
Results will be returned with the default user address
|
NEAREST_ADDRESS
Results will be returned with the nearest address for a distance filter.
|
NO_ADDRESSES
Results will be returned without address information
|
| Modifier and Type | Method and Description |
|---|---|
static AddressResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AddressResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddressResult NO_ADDRESSES
public static final AddressResult NEAREST_ADDRESS
NO_ADDRESSESpublic static final AddressResult DEFAULT_ADDRESS
public static final AddressResult ALL_LOCATED_ADDRESSES
public static AddressResult[] values()
for (AddressResult c : AddressResult.values()) System.out.println(c);
public static AddressResult valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null