Enum Class UtilityAttributeComparisonOperator

java.lang.Object
java.lang.Enum<UtilityAttributeComparisonOperator>
com.esri.arcgisruntime.utilitynetworks.UtilityAttributeComparisonOperator
All Implemented Interfaces:
Serializable, Comparable<UtilityAttributeComparisonOperator>, Constable

public enum UtilityAttributeComparisonOperator extends Enum<UtilityAttributeComparisonOperator>
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 Constants
    Enum Constant
    Description
    Tests 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 Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • EQUAL

      public static final UtilityAttributeComparisonOperator EQUAL
      Tests whether an attribute is equal to another attribute or a specific value.
      Since:
      100.7.0
    • NOT_EQUAL

      public static final UtilityAttributeComparisonOperator NOT_EQUAL
      Tests whether an attribute is not equal to another attribute or a specific value.
      Since:
      100.7.0
    • GREATER_THAN

      public static final UtilityAttributeComparisonOperator GREATER_THAN
      Tests whether an attribute is greater than another attribute or a specific value.
      Since:
      100.7.0
    • GREATER_THAN_EQUAL

      public static final UtilityAttributeComparisonOperator 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

      public static final UtilityAttributeComparisonOperator LESS_THAN
      Tests whether an attribute is less than another attribute or a specific value.
      Since:
      100.7.0
    • LESS_THAN_EQUAL

      public static final UtilityAttributeComparisonOperator 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

      public static final UtilityAttributeComparisonOperator 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

      public static final UtilityAttributeComparisonOperator 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

      public static final UtilityAttributeComparisonOperator 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

      public static final UtilityAttributeComparisonOperator 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

      public static UtilityAttributeComparisonOperator[] 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

      public static UtilityAttributeComparisonOperator valueOf(String name)
      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 name
      NullPointerException - if the argument is null