Enum UtilityAttributeComparisonOperator

    • 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​(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 name
        NullPointerException - if the argument is null