Enum NetworkDirectionsSupport
- java.lang.Object
-
- java.lang.Enum<NetworkDirectionsSupport>
-
- com.esri.arcgisruntime.tasks.networkanalysis.NetworkDirectionsSupport
-
- All Implemented Interfaces:
Serializable
,Comparable<NetworkDirectionsSupport>
public enum NetworkDirectionsSupport extends Enum<NetworkDirectionsSupport>
The various types of directions support.- Since:
- 100.7.0
- See Also:
RouteTaskInfo.getDirectionsSupport()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SUPPORTED
Directions are supported.UNKNOWN
Directions support is unknown.UNSUPPORTED
Directions are unsupported.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NetworkDirectionsSupport
valueOf(String name)
Returns the enum constant of this type with the specified name.static NetworkDirectionsSupport[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final NetworkDirectionsSupport UNKNOWN
Directions support is unknown.- Since:
- 100.7.0
-
UNSUPPORTED
public static final NetworkDirectionsSupport UNSUPPORTED
Directions are unsupported.- Since:
- 100.7.0
-
SUPPORTED
public static final NetworkDirectionsSupport SUPPORTED
Directions are supported.- Since:
- 100.7.0
-
-
Method Detail
-
values
public static NetworkDirectionsSupport[] 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 (NetworkDirectionsSupport c : NetworkDirectionsSupport.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NetworkDirectionsSupport 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
-
-