Enum Operator

    • Enum Constant Detail

      • NONE

        public static final Operator NONE
      • IS_EQUALS

        public static final Operator IS_EQUALS
      • NOT_EQUALS

        public static final Operator NOT_EQUALS
      • GREATER_THAN

        public static final Operator GREATER_THAN
      • LESS_THAN

        public static final Operator LESS_THAN
      • BETWEEN

        public static final Operator BETWEEN
      • NOT_BETWEEN

        public static final Operator NOT_BETWEEN
      • GREATER_EQUALS

        public static final Operator GREATER_EQUALS
      • LESS_EQUALS

        public static final Operator LESS_EQUALS
      • DAY_TIME_BETWEEN

        public static final Operator DAY_TIME_BETWEEN
      • BEGINS_WITH

        public static final Operator BEGINS_WITH
      • NOT_BEGINS_WITH

        public static final Operator NOT_BEGINS_WITH
      • ENDS_WITH

        public static final Operator ENDS_WITH
      • NOT_ENDS_WITH

        public static final Operator NOT_ENDS_WITH
      • CONTAINS

        public static final Operator CONTAINS
      • NOT_CONTAINS

        public static final Operator NOT_CONTAINS
      • ALL_OF

        public static final Operator ALL_OF
      • ONE_OF

        public static final Operator ONE_OF
      • NONE_OF

        public static final Operator NONE_OF
      • SET_EQUALS

        public static final Operator SET_EQUALS
      • ORDERED_SET_EQUALS

        public static final Operator ORDERED_SET_EQUALS
      • SUBSET_OF

        public static final Operator SUBSET_OF
      • EXCLUDES_ALL

        public static final Operator EXCLUDES_ALL
    • Method Detail

      • values

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

        public static Operator 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
      • enumName

        public String enumName()
        Specified by:
        enumName in interface com.github.davidmoten.odata.client.Enum
      • enumValue

        public String enumValue()
        Specified by:
        enumValue in interface com.github.davidmoten.odata.client.Enum