java.lang.Object
java.lang.Enum<Operator>
org.uitnet.testing.smartfwk.ui.core.file.reader.support.Operator
All Implemented Interfaces:
Serializable, Comparable<Operator>, java.lang.constant.Constable

public enum Operator
extends Enum<Operator>
Author:
Madhav Krishna
  • Enum Constant Details

    • eq

      public static final Operator eq
      Equal to operator
    • ne

      public static final Operator ne
      Not equal to operator
    • gt

      public static final Operator gt
      Greater than operator
    • gte

      public static final Operator gte
      Greater than equal to operator
    • lt

      public static final Operator lt
      Less than operator
    • lte

      public static final Operator lte
      Less than equal to operator
    • startsWith

      public static final Operator startsWith
      Starts with value operator
    • dontStartsWith

      public static final Operator dontStartsWith
      Don't Starts With value operator
    • endsWith

      public static final Operator endsWith
      Ends With value operator
    • dontEndsWith

      public static final Operator dontEndsWith
      Don't Ends With value operator
    • contains

      public static final Operator contains
      Contains value operator
    • dontContains

      public static final Operator dontContains
      Don't Contains value operator
  • Method Details

    • values

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

      public String getOp()