Enum OperatorEnum

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

    public enum OperatorEnum
    extends java.lang.Enum<OperatorEnum>
    OperatorEnum.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      CONTAINS
      Contains operator enum.
      ENDS_WITH
      Ends with operator enum.
      EQ
      Eq operator enum.
      EXCLUDE
      Exclude operator enum.
      GT
      Gt operator enum.
      LT
      Lt operator enum.
      MATCH
      Match operator enum.
      PATH_PATTERN
      Path patter operator enum.
      REGEX
      Regex operator enum.
      STARTS_WITH
      Starts with operator enum.
      TIME_AFTER
      Time after operator enum.
      TIME_BEFORE
      Time before operator enum.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static java.util.List<OperatorEnum> acquireSupport()
      acquire operator supports.
      java.lang.String getAlias()
      get alias.
      static OperatorEnum getOperatorEnumByAlias​(java.lang.String alias)
      get operator enum by alias.
      java.lang.Boolean getSupport()
      get support.
      static OperatorEnum valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static OperatorEnum[] 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

      • MATCH

        public static final OperatorEnum MATCH
        Match operator enum.
      • REGEX

        public static final OperatorEnum REGEX
        Regex operator enum.
      • CONTAINS

        public static final OperatorEnum CONTAINS
        Contains operator enum.
      • STARTS_WITH

        public static final OperatorEnum STARTS_WITH
        Starts with operator enum.
      • ENDS_WITH

        public static final OperatorEnum ENDS_WITH
        Ends with operator enum.
      • TIME_BEFORE

        public static final OperatorEnum TIME_BEFORE
        Time before operator enum.
      • EXCLUDE

        public static final OperatorEnum EXCLUDE
        Exclude operator enum.
      • TIME_AFTER

        public static final OperatorEnum TIME_AFTER
        Time after operator enum.
      • PATH_PATTERN

        public static final OperatorEnum PATH_PATTERN
        Path patter operator enum.
    • Method Detail

      • values

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

        public static OperatorEnum 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
      • getAlias

        public java.lang.String getAlias()
        get alias.
        Returns:
        alias alias
      • getSupport

        public java.lang.Boolean getSupport()
        get support.
        Returns:
        support support
      • acquireSupport

        public static java.util.List<OperatorEnum> acquireSupport()
        acquire operator supports.
        Returns:
        operator support.
      • getOperatorEnumByAlias

        public static OperatorEnum getOperatorEnumByAlias​(java.lang.String alias)
        get operator enum by alias.
        Parameters:
        alias - operator alias.
        Returns:
        operator enum.