JavaScript is disabled on your browser.
Skip navigation links
Package
Class
Tree
Deprecated
Index
Help
Prev
Next
Frames
No Frames
All Classes
SEARCH:
JavaScript is disabled on your browser.
C
F
G
L
M
N
O
R
S
T
V
C
ch.frostnova.util.check
- package ch.frostnova.util.check
The
Frostnova Check Framework
offers a
Check
class for
parameter/value validation
using a rich and expandable set of utility functions.
check(T)
- Method in interface ch.frostnova.util.check.
Verify
Check the value.
Check
- Class in
ch.frostnova.util.check
Check class for
input validation
.
CheckCollection
- Class in
ch.frostnova.util.check
Utility methods to perform checks on
Collection
values.
CheckNumber
- Class in
ch.frostnova.util.check
Utility methods to perform checks on
Number
values.
CheckString
- Class in
ch.frostnova.util.check
Utility methods to perform checks on
String
values.
F
finite()
- Static method in class ch.frostnova.util.check.
CheckNumber
Check that the number is an actual number (not infinity, not NaN).
format(String)
- Static method in class ch.frostnova.util.check.
CheckString
Check that the string's format matches the given pattern
format(String, String)
- Static method in class ch.frostnova.util.check.
CheckString
Check that the string's format matches the given pattern
format(Pattern)
- Static method in class ch.frostnova.util.check.
CheckString
Check that the string's format matches the given pattern
format(Pattern, String)
- Static method in class ch.frostnova.util.check.
CheckString
Check that the string's format matches the given pattern
G
greaterThan(Number)
- Static method in class ch.frostnova.util.check.
CheckNumber
Check that the number greater than a given value
L
lessThan(Number)
- Static method in class ch.frostnova.util.check.
CheckNumber
Check that the number less than a given value
M
max(int)
- Static method in class ch.frostnova.util.check.
CheckCollection
Check that the collection contains a maximum number of elements
max(int)
- Static method in class ch.frostnova.util.check.
CheckString
Check that the string contains no more than 'max' characters
max(Number)
- Static method in class ch.frostnova.util.check.
CheckNumber
Check that the number is not larger than 'max'
min(int)
- Static method in class ch.frostnova.util.check.
CheckCollection
Check that the collection contains a minimum number of elements
min(int)
- Static method in class ch.frostnova.util.check.
CheckString
Check that the string contains at least 'min' characters
min(Number)
- Static method in class ch.frostnova.util.check.
CheckNumber
Check that the number is not smaller than 'min'
N
noNullElements()
- Static method in class ch.frostnova.util.check.
CheckCollection
Check that the collection does not contain any null elements
notBlank()
- Static method in class ch.frostnova.util.check.
CheckString
Check that the string is not empty (string is whitespace characters only)
notEmpty()
- Static method in class ch.frostnova.util.check.
CheckCollection
Check that the collection is not empty.
notEmpty()
- Static method in class ch.frostnova.util.check.
CheckString
Check that the string is not empty (string is no characters)
O
optional(T, String, Verify<? super T>...)
- Static method in class ch.frostnova.util.check.
Check
Perform checks on an optional value.
R
required(T, String, Verify<? super T>...)
- Static method in class ch.frostnova.util.check.
Check
Perform checks on a required value (must not be null).
S
singleWord()
- Static method in class ch.frostnova.util.check.
CheckString
Check that the string is a single word (nontrivial sequence of alphabetic characters).
T
that(Predicate<? super T>, String)
- Static method in interface ch.frostnova.util.check.
Verify
Create a verifier based on a predicate and message.
that(Predicate<? super T>, Function<? super T, String>)
- Static method in interface ch.frostnova.util.check.
Verify
Create a verifier based on a predicate and message producer.
V
Verify
<
T
> - Interface in
ch.frostnova.util.check
Verifier interface, for check to be performed with
Check
.
C
F
G
L
M
N
O
R
S
T
V
Skip navigation links
Package
Class
Tree
Deprecated
Index
Help
Prev
Next
Frames
No Frames
All Classes
JavaScript is disabled on your browser.