Enum Operators

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Operators>

    public enum Operators
    extends java.lang.Enum<Operators>
    <p>Java class for Operators. <p>The following schema fragment specifies the expected content contained within this class. <pre> &lt;simpleType name="Operators"&gt; &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt; &lt;enumeration value="EQUALS_TO"/&gt; &lt;enumeration value="CONTAINS"/&gt; &lt;enumeration value="LESS_THAN"/&gt; &lt;enumeration value="GREATER_THAN"/&gt; &lt;enumeration value="STARTS_WITH"/&gt; &lt;enumeration value="ENDS_WITH"/&gt; &lt;enumeration value="DISPLAY"/&gt; &lt;enumeration value="DIFFERENT"/&gt; &lt;enumeration value="BETWEEN"/&gt; &lt;/restriction&gt; &lt;/simpleType&gt; </pre>
    • Enum Constant Detail

      • EQUALS_TO

        public static final Operators EQUALS_TO
      • CONTAINS

        public static final Operators CONTAINS
      • LESS_THAN

        public static final Operators LESS_THAN
      • GREATER_THAN

        public static final Operators GREATER_THAN
      • STARTS_WITH

        public static final Operators STARTS_WITH
      • ENDS_WITH

        public static final Operators ENDS_WITH
      • DISPLAY

        public static final Operators DISPLAY
      • DIFFERENT

        public static final Operators DIFFERENT
      • BETWEEN

        public static final Operators BETWEEN
    • Method Detail

      • values

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

        public static Operators 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
      • value

        public java.lang.String value()
      • fromValue

        public static Operators fromValue​(java.lang.String v)