Enum UtilityAttributeComparisonOperator

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      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.
      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.
      EQUAL
      Tests whether an attribute is equal to another attribute or a specific value.
      GREATER_THAN
      Tests whether an attribute is greater than another attribute or a specific value.
      GREATER_THAN_EQUAL
      Tests whether an attribute is greater than or equal to another attribute or a specific value.
      INCLUDES_ANY
      Tests whether an attribute includes any of the values specified in another attribute or the particular values contained in the condition.
      INCLUDES_THE_VALUES
      Tests whether an attribute includes all the values specified in another attribute or the particular values contained in the condition.
      LESS_THAN
      Tests whether an attribute is less than another attribute or a specific value.
      LESS_THAN_EQUAL
      Tests whether an attribute is less than or equal to another attribute or a specific value.
      NOT_EQUAL
      Tests whether an attribute is not equal to another attribute or a specific value.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static UtilityAttributeComparisonOperator valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static UtilityAttributeComparisonOperator[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

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

      • 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 Detail

      • values

        public static UtilityAttributeComparisonOperator[] 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 (UtilityAttributeComparisonOperator c : UtilityAttributeComparisonOperator.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static UtilityAttributeComparisonOperator 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 name
        java.lang.NullPointerException - if the argument is null