Enum Class Comparator

java.lang.Object
java.lang.Enum<Comparator>
org.yamcs.utils.parser.ast.Comparator
All Implemented Interfaces:
Serializable, Comparable<Comparator>, Constable

public enum Comparator extends Enum<Comparator>
  • Enum Constant Details

    • EQUAL_TO

      public static final Comparator EQUAL_TO
    • GREATER_THAN

      public static final Comparator GREATER_THAN
    • GREATER_THAN_OR_EQUAL_TO

      public static final Comparator GREATER_THAN_OR_EQUAL_TO
    • HAS

      public static final Comparator HAS
    • LESS_THAN

      public static final Comparator LESS_THAN
    • LESS_THAN_OR_EQUAL_TO

      public static final Comparator LESS_THAN_OR_EQUAL_TO
    • NOT_EQUAL_TO

      public static final Comparator NOT_EQUAL_TO
    • RE_EQUAL_TO

      public static final Comparator RE_EQUAL_TO
    • RE_NOT_EQUAL_TO

      public static final Comparator RE_NOT_EQUAL_TO
  • Method Details

    • values

      public static Comparator[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Comparator valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null