Enum RouteVehicleNoticeCode
- java.lang.Object
-
- java.lang.Enum<RouteVehicleNoticeCode>
-
- software.amazon.awssdk.services.georoutes.model.RouteVehicleNoticeCode
-
- All Implemented Interfaces:
Serializable,Comparable<RouteVehicleNoticeCode>
@Generated("software.amazon.awssdk:codegen") public enum RouteVehicleNoticeCode extends Enum<RouteVehicleNoticeCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RouteVehicleNoticeCodefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<RouteVehicleNoticeCode>knownValues()StringtoString()static RouteVehicleNoticeCodevalueOf(String name)Returns the enum constant of this type with the specified name.static RouteVehicleNoticeCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCURATE_POLYLINE_UNAVAILABLE
public static final RouteVehicleNoticeCode ACCURATE_POLYLINE_UNAVAILABLE
-
OTHER
public static final RouteVehicleNoticeCode OTHER
-
POTENTIAL_VIOLATED_AVOID_TOLL_ROAD_USAGE
public static final RouteVehicleNoticeCode POTENTIAL_VIOLATED_AVOID_TOLL_ROAD_USAGE
-
POTENTIAL_VIOLATED_CARPOOL_USAGE
public static final RouteVehicleNoticeCode POTENTIAL_VIOLATED_CARPOOL_USAGE
-
POTENTIAL_VIOLATED_TURN_RESTRICTION_USAGE
public static final RouteVehicleNoticeCode POTENTIAL_VIOLATED_TURN_RESTRICTION_USAGE
-
POTENTIAL_VIOLATED_VEHICLE_RESTRICTION_USAGE
public static final RouteVehicleNoticeCode POTENTIAL_VIOLATED_VEHICLE_RESTRICTION_USAGE
-
POTENTIAL_VIOLATED_ZONE_RESTRICTION_USAGE
public static final RouteVehicleNoticeCode POTENTIAL_VIOLATED_ZONE_RESTRICTION_USAGE
-
SEASONAL_CLOSURE
public static final RouteVehicleNoticeCode SEASONAL_CLOSURE
-
TOLLS_DATA_TEMPORARILY_UNAVAILABLE
public static final RouteVehicleNoticeCode TOLLS_DATA_TEMPORARILY_UNAVAILABLE
-
TOLLS_DATA_UNAVAILABLE
public static final RouteVehicleNoticeCode TOLLS_DATA_UNAVAILABLE
-
TOLL_TRANSPONDER
public static final RouteVehicleNoticeCode TOLL_TRANSPONDER
-
VIOLATED_AVOID_CONTROLLED_ACCESS_HIGHWAY
public static final RouteVehicleNoticeCode VIOLATED_AVOID_CONTROLLED_ACCESS_HIGHWAY
-
VIOLATED_AVOID_DIFFICULT_TURNS
public static final RouteVehicleNoticeCode VIOLATED_AVOID_DIFFICULT_TURNS
-
VIOLATED_AVOID_DIRT_ROAD
public static final RouteVehicleNoticeCode VIOLATED_AVOID_DIRT_ROAD
-
VIOLATED_AVOID_SEASONAL_CLOSURE
public static final RouteVehicleNoticeCode VIOLATED_AVOID_SEASONAL_CLOSURE
-
VIOLATED_AVOID_TOLL_ROAD
public static final RouteVehicleNoticeCode VIOLATED_AVOID_TOLL_ROAD
-
VIOLATED_AVOID_TOLL_TRANSPONDER
public static final RouteVehicleNoticeCode VIOLATED_AVOID_TOLL_TRANSPONDER
-
VIOLATED_AVOID_TRUCK_ROAD_TYPE
public static final RouteVehicleNoticeCode VIOLATED_AVOID_TRUCK_ROAD_TYPE
-
VIOLATED_AVOID_TUNNEL
public static final RouteVehicleNoticeCode VIOLATED_AVOID_TUNNEL
-
VIOLATED_AVOID_U_TURNS
public static final RouteVehicleNoticeCode VIOLATED_AVOID_U_TURNS
-
VIOLATED_BLOCKED_ROAD
public static final RouteVehicleNoticeCode VIOLATED_BLOCKED_ROAD
-
VIOLATED_CARPOOL
public static final RouteVehicleNoticeCode VIOLATED_CARPOOL
-
VIOLATED_EMERGENCY_GATE
public static final RouteVehicleNoticeCode VIOLATED_EMERGENCY_GATE
-
VIOLATED_START_DIRECTION
public static final RouteVehicleNoticeCode VIOLATED_START_DIRECTION
-
VIOLATED_TURN_RESTRICTION
public static final RouteVehicleNoticeCode VIOLATED_TURN_RESTRICTION
-
VIOLATED_VEHICLE_RESTRICTION
public static final RouteVehicleNoticeCode VIOLATED_VEHICLE_RESTRICTION
-
VIOLATED_ZONE_RESTRICTION
public static final RouteVehicleNoticeCode VIOLATED_ZONE_RESTRICTION
-
UNKNOWN_TO_SDK_VERSION
public static final RouteVehicleNoticeCode UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static RouteVehicleNoticeCode[] 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 (RouteVehicleNoticeCode c : RouteVehicleNoticeCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RouteVehicleNoticeCode 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<RouteVehicleNoticeCode>
-
fromValue
public static RouteVehicleNoticeCode 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:
- RouteVehicleNoticeCode corresponding to the value
-
knownValues
public static Set<RouteVehicleNoticeCode> 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 knownRouteVehicleNoticeCodes
-
-