Enum SearchOperation

    • Enum Constant Detail

      • GREATER_OR_EQUAL_THAN

        public static final SearchOperation GREATER_OR_EQUAL_THAN
        Greater or equal
      • LESS_OR_EQUAL_THAN

        public static final SearchOperation LESS_OR_EQUAL_THAN
        Less or equal
      • SPECIFIED_BOOLEAN_SQL

        public static final SearchOperation SPECIFIED_BOOLEAN_SQL
        Boolean value specified, use for sql entities
      • EQUALS_ONE_OF

        public static final SearchOperation EQUALS_ONE_OF
        Equal to one of the list
      • CONTAINS_ONE_OF

        public static final SearchOperation CONTAINS_ONE_OF
        Contains one from the list
      • INTERVALS

        public static final SearchOperation INTERVALS
        Specified value in intervals
    • Method Detail

      • values

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

        public static SearchOperation 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