Enum WaypointOptimizationConstraint
- java.lang.Object
-
- java.lang.Enum<WaypointOptimizationConstraint>
-
- software.amazon.awssdk.services.georoutes.model.WaypointOptimizationConstraint
-
- All Implemented Interfaces:
Serializable,Comparable<WaypointOptimizationConstraint>
@Generated("software.amazon.awssdk:codegen") public enum WaypointOptimizationConstraint extends Enum<WaypointOptimizationConstraint>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESS_HOURSAPPOINTMENT_TIMEBEFOREHEADINGSERVICE_DURATIONSIDE_OF_STREETUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WaypointOptimizationConstraintfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<WaypointOptimizationConstraint>knownValues()StringtoString()static WaypointOptimizationConstraintvalueOf(String name)Returns the enum constant of this type with the specified name.static WaypointOptimizationConstraint[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCESS_HOURS
public static final WaypointOptimizationConstraint ACCESS_HOURS
-
APPOINTMENT_TIME
public static final WaypointOptimizationConstraint APPOINTMENT_TIME
-
BEFORE
public static final WaypointOptimizationConstraint BEFORE
-
HEADING
public static final WaypointOptimizationConstraint HEADING
-
SERVICE_DURATION
public static final WaypointOptimizationConstraint SERVICE_DURATION
-
SIDE_OF_STREET
public static final WaypointOptimizationConstraint SIDE_OF_STREET
-
UNKNOWN_TO_SDK_VERSION
public static final WaypointOptimizationConstraint UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static WaypointOptimizationConstraint[] 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 (WaypointOptimizationConstraint c : WaypointOptimizationConstraint.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WaypointOptimizationConstraint 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<WaypointOptimizationConstraint>
-
fromValue
public static WaypointOptimizationConstraint 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:
- WaypointOptimizationConstraint corresponding to the value
-
knownValues
public static Set<WaypointOptimizationConstraint> 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 knownWaypointOptimizationConstraints
-
-