public abstract class Checks extends Object
Modifier and Type | Class and Description |
---|---|
static class |
Checks.Check<A> |
static class |
Checks.IntCheck |
Modifier and Type | Field and Description |
---|---|
static Checks.IntCheck |
negative |
static Checks.Check<Object> |
nonNull |
static Checks.IntCheck |
positive |
Modifier and Type | Method and Description |
---|---|
static <A> Checks.Check<A[]> |
allElems(Checks.Check<? super A> check) |
static Checks.IntCheck |
greaterThan(int bound) |
static Checks.IntCheck |
lessThan(int bound) |
static String |
metaformat(String metatemplate,
Object... args) |
public static final Checks.Check<Object> nonNull
public static Checks.IntCheck positive
public static Checks.IntCheck negative
public static <A> Checks.Check<A[]> allElems(Checks.Check<? super A> check)
public static Checks.IntCheck greaterThan(int bound)
public static Checks.IntCheck lessThan(int bound)
see also the complete user documentation .