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