Enum Class Checks.Condition

java.lang.Object
java.lang.Enum<Checks.Condition>
org.scictrl.csshell.epics.server.processor.Checks.Condition
All Implemented Interfaces:
Serializable, Comparable<Checks.Condition>, Constable
Enclosing class:
Checks<A>

public static enum Checks.Condition extends Enum<Checks.Condition>
Check condition enumeration.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Check returns always true.
    Check returns true if tested value is numerically different than the test value.
    Check returns true if tested value is within precision of the test value.
    Check returns true if tested value is greater than the test value.
    Check returns true if tested value is greater than or equal to the test value.
    Check returns true if tested value is less than the test value.
    Check returns true if tested value is less than or equal to the test value.
    Check never returns true.
    Check returns true if tested value is outside precision of the test value.
    Check returns true if tested value is numerically exactly same the test value.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns Condition object from configuration string.
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • ALWAYS

      public static final Checks.Condition ALWAYS
      Check returns always true.
    • NEVER

      public static final Checks.Condition NEVER
      Check never returns true.
    • EQUAL

      public static final Checks.Condition EQUAL
      Check returns true if tested value is within precision of the test value.
    • NONEQUAL

      public static final Checks.Condition NONEQUAL
      Check returns true if tested value is outside precision of the test value.
    • SAME

      public static final Checks.Condition SAME
      Check returns true if tested value is numerically exactly same the test value.
    • DIFFERENT

      public static final Checks.Condition DIFFERENT
      Check returns true if tested value is numerically different than the test value.
    • GREATER

      public static final Checks.Condition GREATER
      Check returns true if tested value is greater than the test value.
    • LESS

      public static final Checks.Condition LESS
      Check returns true if tested value is less than the test value.
    • GREATEREQ

      public static final Checks.Condition GREATEREQ
      Check returns true if tested value is greater than or equal to the test value.
    • LESSEQ

      public static final Checks.Condition LESSEQ
      Check returns true if tested value is less than or equal to the test value.
  • Method Details

    • values

      public static Checks.Condition[] 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 Checks.Condition 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
    • fromString

      public static Checks.Condition fromString(String s)
      Returns Condition object from configuration string.
      Parameters:
      s - configuration string
      Returns:
      Condition object from configuration string