java.lang.Object
org.jfuncmachine.compiler.model.expr.bool.tests.Tests

public class Tests extends Object
A container for the various kinds of tests that can be done for an if instruction.
  • Field Details

    • EQ

      public static Test EQ
      The test for equality
    • NE

      public static Test NE
      The test for non-equality
    • LT

      public static Test LT
      The test for less-than
    • LE

      public static Test LE
      The test for less-or-equal
    • GT

      public static Test GT
      The test for greater-than
    • GE

      public static Test GE
      The test for greater-or-equal
    • IsNull

      public static Test IsNull
      The test for null
    • IsNotNull

      public static Test IsNotNull
      The test for not-null
    • IsTrue

      public static Test IsTrue
      The test for true
    • IsFalse

      public static Test IsFalse
      The test for false
    • EQ_IgnoreCase

      public static Test EQ_IgnoreCase
      The test for equality ignoring case (specifically for strings)
    • NE_IgnoreCase

      public static Test NE_IgnoreCase
      The test for non-equality ignoring case (specifically for strings)
    • LT_IgnoreCase

      public static Test LT_IgnoreCase
      The test for less-than ignoring case (specifically for strings)
    • LE_IgnoreCase

      public static Test LE_IgnoreCase
      The test for less-or-equal ignoring case (specifically for strings)
    • GT_IgnoreCase

      public static Test GT_IgnoreCase
      The test for greater-than ignoring case (specifically for strings)
    • GE_IgnoreCase

      public static Test GE_IgnoreCase
      The test for greater-or-equal ignoring case (specifically for strings)