Package com.google.maps.routing.v2
Enum ComputeRoutesRequest.ExtraComputation
- java.lang.Object
-
- java.lang.Enum<ComputeRoutesRequest.ExtraComputation>
-
- com.google.maps.routing.v2.ComputeRoutesRequest.ExtraComputation
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<ComputeRoutesRequest.ExtraComputation>
- Enclosing class:
- ComputeRoutesRequest
public static enum ComputeRoutesRequest.ExtraComputation extends Enum<ComputeRoutesRequest.ExtraComputation> implements com.google.protobuf.ProtocolMessageEnum
Extra computations to perform while completing the request.
Protobuf enumgoogle.maps.routing.v2.ComputeRoutesRequest.ExtraComputation
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXTRA_COMPUTATION_UNSPECIFIED
Not used.FUEL_CONSUMPTION
Estimated fuel consumption for the route(s).HTML_FORMATTED_NAVIGATION_INSTRUCTIONS
[Navigation Instructions][google.maps.routing.v2.NavigationInstructions.instructions] presented as a formatted HTML text string.TOLLS
Toll information for the route(s).TRAFFIC_ON_POLYLINE
Traffic aware polylines for the route(s).UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
EXTRA_COMPUTATION_UNSPECIFIED_VALUE
Not used.static int
FUEL_CONSUMPTION_VALUE
Estimated fuel consumption for the route(s).static int
HTML_FORMATTED_NAVIGATION_INSTRUCTIONS_VALUE
[Navigation Instructions][google.maps.routing.v2.NavigationInstructions.instructions] presented as a formatted HTML text string.static int
TOLLS_VALUE
Toll information for the route(s).static int
TRAFFIC_ON_POLYLINE_VALUE
Traffic aware polylines for the route(s).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ComputeRoutesRequest.ExtraComputation
forNumber(int value)
static com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor()
com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType()
int
getNumber()
com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor()
static com.google.protobuf.Internal.EnumLiteMap<ComputeRoutesRequest.ExtraComputation>
internalGetValueMap()
static ComputeRoutesRequest.ExtraComputation
valueOf(int value)
Deprecated.static ComputeRoutesRequest.ExtraComputation
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static ComputeRoutesRequest.ExtraComputation
valueOf(String name)
Returns the enum constant of this type with the specified name.static ComputeRoutesRequest.ExtraComputation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXTRA_COMPUTATION_UNSPECIFIED
public static final ComputeRoutesRequest.ExtraComputation EXTRA_COMPUTATION_UNSPECIFIED
Not used. Requests containing this value will fail.
EXTRA_COMPUTATION_UNSPECIFIED = 0;
-
TOLLS
public static final ComputeRoutesRequest.ExtraComputation TOLLS
Toll information for the route(s).
TOLLS = 1;
-
FUEL_CONSUMPTION
public static final ComputeRoutesRequest.ExtraComputation FUEL_CONSUMPTION
Estimated fuel consumption for the route(s).
FUEL_CONSUMPTION = 2;
-
TRAFFIC_ON_POLYLINE
public static final ComputeRoutesRequest.ExtraComputation TRAFFIC_ON_POLYLINE
Traffic aware polylines for the route(s).
TRAFFIC_ON_POLYLINE = 3;
-
HTML_FORMATTED_NAVIGATION_INSTRUCTIONS
public static final ComputeRoutesRequest.ExtraComputation HTML_FORMATTED_NAVIGATION_INSTRUCTIONS
[Navigation Instructions][google.maps.routing.v2.NavigationInstructions.instructions] presented as a formatted HTML text string. This content is meant to be read as-is. This content is for display only. Do not programmatically parse it.
HTML_FORMATTED_NAVIGATION_INSTRUCTIONS = 4;
-
UNRECOGNIZED
public static final ComputeRoutesRequest.ExtraComputation UNRECOGNIZED
-
-
Field Detail
-
EXTRA_COMPUTATION_UNSPECIFIED_VALUE
public static final int EXTRA_COMPUTATION_UNSPECIFIED_VALUE
Not used. Requests containing this value will fail.
EXTRA_COMPUTATION_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
TOLLS_VALUE
public static final int TOLLS_VALUE
Toll information for the route(s).
TOLLS = 1;
- See Also:
- Constant Field Values
-
FUEL_CONSUMPTION_VALUE
public static final int FUEL_CONSUMPTION_VALUE
Estimated fuel consumption for the route(s).
FUEL_CONSUMPTION = 2;
- See Also:
- Constant Field Values
-
TRAFFIC_ON_POLYLINE_VALUE
public static final int TRAFFIC_ON_POLYLINE_VALUE
Traffic aware polylines for the route(s).
TRAFFIC_ON_POLYLINE = 3;
- See Also:
- Constant Field Values
-
HTML_FORMATTED_NAVIGATION_INSTRUCTIONS_VALUE
public static final int HTML_FORMATTED_NAVIGATION_INSTRUCTIONS_VALUE
[Navigation Instructions][google.maps.routing.v2.NavigationInstructions.instructions] presented as a formatted HTML text string. This content is meant to be read as-is. This content is for display only. Do not programmatically parse it.
HTML_FORMATTED_NAVIGATION_INSTRUCTIONS = 4;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ComputeRoutesRequest.ExtraComputation[] 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 (ComputeRoutesRequest.ExtraComputation c : ComputeRoutesRequest.ExtraComputation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ComputeRoutesRequest.ExtraComputation valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static ComputeRoutesRequest.ExtraComputation valueOf(int value)
Deprecated.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:
value
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
forNumber
public static ComputeRoutesRequest.ExtraComputation forNumber(int value)
- Parameters:
value
- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<ComputeRoutesRequest.ExtraComputation> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static ComputeRoutesRequest.ExtraComputation valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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:
desc
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-