Package | Description |
---|---|
org.ops4j.lang |
Classes, interfaces and exceptions that we find are missing in the java.lang package is added to
this package.
|
Modifier and Type | Method and Description |
---|---|
static void |
PostConditionException.validateEqualTo(double value,
double condition,
String identifier)
Validates that the value under test is a particular value.
|
static void |
PostConditionException.validateEqualTo(long value,
long condition,
String identifier)
Validates that the value under test is a particular value.
|
static void |
PostConditionException.validateEqualTo(Number value,
Number condition,
String identifier)
Validates that the value under test is a particular value.
|
static void |
PostConditionException.validateGreaterThan(double value,
double limit,
String identifier)
Validates that the value is greater than a limit.
|
static void |
PostConditionException.validateGreaterThan(long value,
long limit,
String identifier)
Validates that the value is greater than a limit.
|
static void |
PostConditionException.validateGreaterThan(Number value,
Number limit,
String identifier)
Validates that the value is greater than a limit.
|
static void |
PostConditionException.validateLesserThan(double value,
double limit,
String identifier)
Validates that the value is lesser than a limit.
|
static void |
PostConditionException.validateLesserThan(long value,
long limit,
String identifier)
Validates that the value is lesser than a limit.
|
static void |
PostConditionException.validateLesserThan(Number value,
Number limit,
String identifier)
Validates that the value is lesser than a limit.
|
static void |
PostConditionException.validateNotNull(Object object,
String identifier)
Validates that the object is not null.
|
static void |
PostConditionException.validateNull(Object object,
String identifier)
Validates that the object is null.
|
Copyright © 2006–2019 OPS4J - Open Participation Software for Java. All rights reserved.