$assertpublic abstract class $assert extends Object
Fields Summary |
---|
public static final boolean | ENABLEDGlobal compile time assertion flag. |
Constructors Summary |
---|
private $assert()
|
Methods Summary |
---|
public static void | ASSERT(boolean condition, java.lang.String msg)
if (ENABLED)
{
if (! condition) throw new RuntimeException (msg);
}
| public static void | ASSERT(boolean condition)
if (ENABLED)
{
if (! condition) throw new RuntimeException ("ASSERTION FAILURE");
}
|
|