Module com.esri.arcgisruntime
Enum Class UtilityAttributeComparisonOperator
java.lang.Object
java.lang.Enum<UtilityAttributeComparisonOperator>
com.esri.arcgisruntime.utilitynetworks.UtilityAttributeComparisonOperator
- All Implemented Interfaces:
Serializable
,Comparable<UtilityAttributeComparisonOperator>
,Constable
The various comparisons to perform between a
UtilityNetworkAttribute
and a second UtilityNetworkAttribute
or a specific value.- Since:
- 100.7.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionTests whether an attribute does not include any of the values specified in another attribute or the particular values in the condition.Tests whether an attribute does not include all of the values specified in another attribute or the particular values in the condition.Tests whether an attribute is equal to another attribute or a specific value.Tests whether an attribute is greater than another attribute or a specific value.Tests whether an attribute is greater than or equal to another attribute or a specific value.Tests whether an attribute includes any of the values specified in another attribute or the particular values contained in the condition.Tests whether an attribute includes all the values specified in another attribute or the particular values contained in the condition.Tests whether an attribute is less than another attribute or a specific value.Tests whether an attribute is less than or equal to another attribute or a specific value.Tests whether an attribute is not equal to another attribute or a specific value. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static UtilityAttributeComparisonOperator[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EQUAL
Tests whether an attribute is equal to another attribute or a specific value.- Since:
- 100.7.0
-
NOT_EQUAL
Tests whether an attribute is not equal to another attribute or a specific value.- Since:
- 100.7.0
-
GREATER_THAN
Tests whether an attribute is greater than another attribute or a specific value.- Since:
- 100.7.0
-
GREATER_THAN_EQUAL
Tests whether an attribute is greater than or equal to another attribute or a specific value.- Since:
- 100.7.0
-
LESS_THAN
Tests whether an attribute is less than another attribute or a specific value.- Since:
- 100.7.0
-
LESS_THAN_EQUAL
Tests whether an attribute is less than or equal to another attribute or a specific value.- Since:
- 100.7.0
-
INCLUDES_THE_VALUES
Tests whether an attribute includes all the values specified in another attribute or the particular values contained in the condition.- Since:
- 100.7.0
-
DOES_NOT_INCLUDE_THE_VALUES
Tests whether an attribute does not include all of the values specified in another attribute or the particular values in the condition.- Since:
- 100.7.0
-
INCLUDES_ANY
Tests whether an attribute includes any of the values specified in another attribute or the particular values contained in the condition.- Since:
- 100.7.0
-
DOES_NOT_INCLUDE_ANY
Tests whether an attribute does not include any of the values specified in another attribute or the particular values in the condition.- Since:
- 100.7.0
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-