Enum RouteSpanAdditionalFeature
- java.lang.Object
-
- java.lang.Enum<RouteSpanAdditionalFeature>
-
- software.amazon.awssdk.services.georoutes.model.RouteSpanAdditionalFeature
-
- All Implemented Interfaces:
Serializable,Comparable<RouteSpanAdditionalFeature>
@Generated("software.amazon.awssdk:codegen") public enum RouteSpanAdditionalFeature extends Enum<RouteSpanAdditionalFeature>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RouteSpanAdditionalFeaturefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<RouteSpanAdditionalFeature>knownValues()StringtoString()static RouteSpanAdditionalFeaturevalueOf(String name)Returns the enum constant of this type with the specified name.static RouteSpanAdditionalFeature[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEST_CASE_DURATION
public static final RouteSpanAdditionalFeature BEST_CASE_DURATION
-
CAR_ACCESS
public static final RouteSpanAdditionalFeature CAR_ACCESS
-
COUNTRY
public static final RouteSpanAdditionalFeature COUNTRY
-
DISTANCE
public static final RouteSpanAdditionalFeature DISTANCE
-
DURATION
public static final RouteSpanAdditionalFeature DURATION
-
DYNAMIC_SPEED
public static final RouteSpanAdditionalFeature DYNAMIC_SPEED
-
FUNCTIONAL_CLASSIFICATION
public static final RouteSpanAdditionalFeature FUNCTIONAL_CLASSIFICATION
-
GATES
public static final RouteSpanAdditionalFeature GATES
-
INCIDENTS
public static final RouteSpanAdditionalFeature INCIDENTS
-
NAMES
public static final RouteSpanAdditionalFeature NAMES
-
NOTICES
public static final RouteSpanAdditionalFeature NOTICES
-
PEDESTRIAN_ACCESS
public static final RouteSpanAdditionalFeature PEDESTRIAN_ACCESS
-
RAILWAY_CROSSINGS
public static final RouteSpanAdditionalFeature RAILWAY_CROSSINGS
-
REGION
public static final RouteSpanAdditionalFeature REGION
-
ROAD_ATTRIBUTES
public static final RouteSpanAdditionalFeature ROAD_ATTRIBUTES
-
ROUTE_NUMBERS
public static final RouteSpanAdditionalFeature ROUTE_NUMBERS
-
SCOOTER_ACCESS
public static final RouteSpanAdditionalFeature SCOOTER_ACCESS
-
SPEED_LIMIT
public static final RouteSpanAdditionalFeature SPEED_LIMIT
-
TOLL_SYSTEMS
public static final RouteSpanAdditionalFeature TOLL_SYSTEMS
-
TRUCK_ACCESS
public static final RouteSpanAdditionalFeature TRUCK_ACCESS
-
TRUCK_ROAD_TYPES
public static final RouteSpanAdditionalFeature TRUCK_ROAD_TYPES
-
TYPICAL_DURATION
public static final RouteSpanAdditionalFeature TYPICAL_DURATION
-
ZONES
public static final RouteSpanAdditionalFeature ZONES
-
CONSUMPTION
public static final RouteSpanAdditionalFeature CONSUMPTION
-
UNKNOWN_TO_SDK_VERSION
public static final RouteSpanAdditionalFeature UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static RouteSpanAdditionalFeature[] 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 (RouteSpanAdditionalFeature c : RouteSpanAdditionalFeature.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RouteSpanAdditionalFeature 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<RouteSpanAdditionalFeature>
-
fromValue
public static RouteSpanAdditionalFeature fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- RouteSpanAdditionalFeature corresponding to the value
-
knownValues
public static Set<RouteSpanAdditionalFeature> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownRouteSpanAdditionalFeatures
-
-