Package com.google.maps.model
Enum PlaceAutocompleteType
- java.lang.Object
-
- java.lang.Enum<PlaceAutocompleteType>
-
- com.google.maps.model.PlaceAutocompleteType
-
- All Implemented Interfaces:
com.google.maps.internal.StringJoin.UrlValue
,java.io.Serializable
,java.lang.Comparable<PlaceAutocompleteType>
public enum PlaceAutocompleteType extends java.lang.Enum<PlaceAutocompleteType> implements com.google.maps.internal.StringJoin.UrlValue
Used by the Places API to restrict the autocomplete results to places matching the specified type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDRESS
CITIES
ESTABLISHMENT
GEOCODE
REGIONS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
java.lang.String
toUrlValue()
static PlaceAutocompleteType
valueOf​(java.lang.String name)
Returns the enum constant of this type with the specified name.static PlaceAutocompleteType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GEOCODE
public static final PlaceAutocompleteType GEOCODE
-
ADDRESS
public static final PlaceAutocompleteType ADDRESS
-
ESTABLISHMENT
public static final PlaceAutocompleteType ESTABLISHMENT
-
REGIONS
public static final PlaceAutocompleteType REGIONS
-
CITIES
public static final PlaceAutocompleteType CITIES
-
-
Method Detail
-
values
public static PlaceAutocompleteType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PlaceAutocompleteType c : PlaceAutocompleteType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PlaceAutocompleteType valueOf​(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toUrlValue
public java.lang.String toUrlValue()
- Specified by:
toUrlValue
in interfacecom.google.maps.internal.StringJoin.UrlValue
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<PlaceAutocompleteType>
-
-