Package com.google.maps
Enum FindPlaceFromTextRequest.InputType
- java.lang.Object
-
- java.lang.Enum<FindPlaceFromTextRequest.InputType>
-
- com.google.maps.FindPlaceFromTextRequest.InputType
-
- All Implemented Interfaces:
com.google.maps.internal.StringJoin.UrlValue
,java.io.Serializable
,java.lang.Comparable<FindPlaceFromTextRequest.InputType>
- Enclosing class:
- FindPlaceFromTextRequest
public static enum FindPlaceFromTextRequest.InputType extends java.lang.Enum<FindPlaceFromTextRequest.InputType> implements com.google.maps.internal.StringJoin.UrlValue
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PHONE_NUMBER
TEXT_QUERY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toUrlValue()
static FindPlaceFromTextRequest.InputType
valueOf​(java.lang.String name)
Returns the enum constant of this type with the specified name.static FindPlaceFromTextRequest.InputType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEXT_QUERY
public static final FindPlaceFromTextRequest.InputType TEXT_QUERY
-
PHONE_NUMBER
public static final FindPlaceFromTextRequest.InputType PHONE_NUMBER
-
-
Method Detail
-
values
public static FindPlaceFromTextRequest.InputType[] 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 (FindPlaceFromTextRequest.InputType c : FindPlaceFromTextRequest.InputType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FindPlaceFromTextRequest.InputType 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
-
-