Enum Class CheckpointType

java.lang.Object
java.lang.Enum<CheckpointType>
com.shaft.tools.io.internal.CheckpointType
All Implemented Interfaces:
Serializable, Comparable<CheckpointType>, Constable

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

    • ASSERTION

      public static final CheckpointType ASSERTION
      A hard assertion that fails the test immediately on failure.
    • VERIFICATION

      public static final CheckpointType VERIFICATION
      A soft verification that accumulates failures until the end of the test.
  • Method Details

    • values

      public static CheckpointType[] 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 CheckpointType 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