Enum UtilityTerminalDirectionality
- java.lang.Object
-
- java.lang.Enum<UtilityTerminalDirectionality>
-
- com.esri.arcgisruntime.utilitynetworks.UtilityTerminalDirectionality
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UtilityTerminalDirectionality>
public enum UtilityTerminalDirectionality extends java.lang.Enum<UtilityTerminalDirectionality>
An enumeration of the directionality setting of terminals on a device.- Since:
- 100.8.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BIDIRECTIONAL
Both flow directions are permissible.UNIDIRECTIONAL
Only one flow direction is permissible.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UtilityTerminalDirectionality
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UtilityTerminalDirectionality[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNIDIRECTIONAL
public static final UtilityTerminalDirectionality UNIDIRECTIONAL
Only one flow direction is permissible.- Since:
- 100.8.0
-
BIDIRECTIONAL
public static final UtilityTerminalDirectionality BIDIRECTIONAL
Both flow directions are permissible.- Since:
- 100.8.0
-
-
Method Detail
-
values
public static UtilityTerminalDirectionality[] 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 (UtilityTerminalDirectionality c : UtilityTerminalDirectionality.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UtilityTerminalDirectionality valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-