Skip navigation links
A B C D E F G H I L M N O P S T U V 

A

arg - Variable in class ch.trick17.betterchecks.fluent.ObjectBaseCheck
The argument that is checked.
argName - Variable in class ch.trick17.betterchecks.fluent.BaseCheck
The argument name.
arguments(boolean, String) - Static method in class ch.trick17.betterchecks.Check
A simple argument check that throws an IllegalArgumentException with the given message if the given condition is false.

B

BaseCheck<C extends BaseCheck<C>> - Class in ch.trick17.betterchecks.fluent
The base class for all checks.
BaseCheck() - Constructor for class ch.trick17.betterchecks.fluent.BaseCheck
 

C

ch.trick17.betterchecks - package ch.trick17.betterchecks
Contains the main classes of the library, including Check, the primary entry point, and Config.
ch.trick17.betterchecks.fluent - package ch.trick17.betterchecks.fluent
Contains all fluent check classes, like IntCheck, StringCheck and many more.
ch.trick17.betterchecks.util - package ch.trick17.betterchecks.util
Utility classes.
Check - Class in ch.trick17.betterchecks
The primary entry point to the Better Checks library.
check(Object) - Static method in class ch.trick17.betterchecks.CompactChecks
check(String) - Static method in class ch.trick17.betterchecks.CompactChecks
check(Object[]) - Static method in class ch.trick17.betterchecks.CompactChecks
check(boolean[]) - Static method in class ch.trick17.betterchecks.CompactChecks
check(byte[]) - Static method in class ch.trick17.betterchecks.CompactChecks
check(char[]) - Static method in class ch.trick17.betterchecks.CompactChecks
check(double[]) - Static method in class ch.trick17.betterchecks.CompactChecks
check(float[]) - Static method in class ch.trick17.betterchecks.CompactChecks
check(int[]) - Static method in class ch.trick17.betterchecks.CompactChecks
check(long[]) - Static method in class ch.trick17.betterchecks.CompactChecks
check(short[]) - Static method in class ch.trick17.betterchecks.CompactChecks
check(Collection<?>) - Static method in class ch.trick17.betterchecks.CompactChecks
check(Number) - Static method in class ch.trick17.betterchecks.CompactChecks
check(URL) - Static method in class ch.trick17.betterchecks.CompactChecks
check(int) - Static method in class ch.trick17.betterchecks.CompactChecks
check(long) - Static method in class ch.trick17.betterchecks.CompactChecks
check(double) - Static method in class ch.trick17.betterchecks.CompactChecks
check(boolean, MessageType, Object...) - Method in class ch.trick17.betterchecks.fluent.ObjectBaseCheck
A helper method that allows subclasses to perform simple checks conveniently with a one-liner.
check(boolean, MessageType, Object...) - Method in class ch.trick17.betterchecks.fluent.PrimitiveBaseCheck
A helper method that allows subclasses to perform simple checks conveniently with a one-liner.
checkConversion() - Method in class ch.trick17.betterchecks.fluent.BaseCheck
Asserts that the check is not inverted, throwing an InvalidCheckException otherwise.
checkNull() - Method in class ch.trick17.betterchecks.fluent.ObjectBaseCheck
Performs the implicit null check that should be done before each check.
checkWithCause(boolean, MessageType, Throwable, Object...) - Method in class ch.trick17.betterchecks.fluent.ObjectBaseCheck
The same as ObjectBaseCheck.check(boolean, MessageType, Object...) but with the possibility to define a cause for the exception that is thrown if the check fails.
CLEAN_STACK_TRACES_ENABLED_KEY - Static variable in class ch.trick17.betterchecks.Config
The key for disabling stack trace cleaning in the config file: "cleanStackTraces" (without quotes).
CollectionCheck - Class in ch.trick17.betterchecks.fluent
The check class for all Collection types.
CollectionCheck(Collection<?>) - Constructor for class ch.trick17.betterchecks.fluent.CollectionCheck
For internal use only.
CompactChecks - Class in ch.trick17.betterchecks
Provides the same functionality as the Check class, allowing an even more compact syntax.
Config - Class in ch.trick17.betterchecks
Provides access to the configuration of the Better Checks library.
CONFIG_BASE_NAME - Static variable in class ch.trick17.betterchecks.Config
The base name of the config file for this library: "better-checks-config"
contains(CharSequence) - Method in class ch.trick17.betterchecks.fluent.StringCheck
Checks that the string argument contains the given character sequence, throwing an exception otherwise.
containsAll(CharSequence...) - Method in class ch.trick17.betterchecks.fluent.StringCheck
Checks that the string argument contains all one of the given character sequences, throwing an exception otherwise.
containsAny(CharSequence...) - Method in class ch.trick17.betterchecks.fluent.StringCheck
Checks that the string argument contains at least one of the given character sequences, throwing an exception otherwise.
containsNoNull() - Method in class ch.trick17.betterchecks.fluent.CollectionCheck
Checks that the collection argument does not contain any null element, throwing an exception otherwise.
containsNoNull() - Method in class ch.trick17.betterchecks.fluent.ObjectArrayCheck
Checks that the array argument does not contain any null element, throwing an exception otherwise.

D

DEFAULT_ARG_NAME_KEY - Static variable in class ch.trick17.betterchecks.Config
The key for setting the default argument name in the config file: "defaultArgumentName" (without quotes).
DEFAULT_CLEAN_STRACK_TRACES_ENABLED - Static variable in class ch.trick17.betterchecks.Config
The default setting for for stack trace cleaning, which is true .
DEFAULT_DEFAULT_ARG_NAME - Static variable in class ch.trick17.betterchecks.Config
The default setting for the default argument name, which is "the argument" .
defaultArgName() - Static method in class ch.trick17.betterchecks.Exceptions
A convenience method that returns the default argument name from the configuration.
disable() - Method in class ch.trick17.betterchecks.fluent.PrimitiveBaseCheck
Disables all checks that are called on this check object.
DoubleCheck - Class in ch.trick17.betterchecks.fluent
The check class for double arguments.
DoubleCheck(double) - Constructor for class ch.trick17.betterchecks.fluent.DoubleCheck
For internal use only.

E

endsWith(String) - Method in class ch.trick17.betterchecks.fluent.StringCheck
Checks that the string argument end with the given string, throwing an exception otherwise.
Exceptions - Class in ch.trick17.betterchecks
Helper class that provides several methods for creating exceptions and formatting exception messages.

F

ForceCompilationEntryPoint - Class in ch.trick17.betterchecks
 
ForceCompilationEntryPoint() - Constructor for class ch.trick17.betterchecks.ForceCompilationEntryPoint
 
formatMsg(MessageType, boolean, Object...) - Static method in class ch.trick17.betterchecks.Exceptions
Formats an exception message using the format corresponding to the given message type and the given message arguments.
FormatPair - Class in ch.trick17.betterchecks.util
 
FormatPair(String) - Constructor for class ch.trick17.betterchecks.util.FormatPair
 

G

getConfig() - Static method in class ch.trick17.betterchecks.Config
Returns the Better Checks config singleton.
getDefaultArgumentName() - Method in class ch.trick17.betterchecks.Config
Returns the default argument name used in exception messages.
getDefaultFormat() - Method in enum ch.trick17.betterchecks.MessageType
Returns the default message format for this message type.
getFormat(boolean) - Method in class ch.trick17.betterchecks.util.FormatPair
 
getMessageFormat(MessageType, boolean) - Method in class ch.trick17.betterchecks.Config
Returns the exception message format for the given MessageType.
GwtCompatible - Annotation Type in ch.trick17.betterchecks.util
The presence of this annotation on a type indicates that the type may be used with the Google Web Toolkit (GWT).
GwtIncompatible - Annotation Type in ch.trick17.betterchecks.util
The presence of this annotation on a method indicates that the method may not be used with the Google Web Toolkit (GWT), even though its type is annotated as GwtCompatible and accessible in GWT.

H

hasAuthorityWhich() - Method in class ch.trick17.betterchecks.fluent.UrlCheck
Creates an StringCheck property check for the authority of the URL argument.
hasClass(Class<?>) - Method in class ch.trick17.betterchecks.fluent.ObjectBaseCheck
Checks that the argument has the given class, throwing an exception otherwise.
hasFileWhich() - Method in class ch.trick17.betterchecks.fluent.UrlCheck
Creates an StringCheck property check for the file of the URL argument.
hasHostWhich() - Method in class ch.trick17.betterchecks.fluent.UrlCheck
Creates an StringCheck property check for the host of the URL argument.
hasLength(int) - Method in class ch.trick17.betterchecks.fluent.ObjectArrayCheck
Checks that the array argument has the given length, throwing an exception otherwise.
hasLength(int) - Method in class ch.trick17.betterchecks.fluent.PrimitiveArrayCheck
Checks that the array argument has the given length, throwing an exception otherwise.
hasLength(int) - Method in class ch.trick17.betterchecks.fluent.StringCheck
Checks that the string argument has the given length, throwing an exception otherwise.
hasLengthBetween(int, int) - Method in class ch.trick17.betterchecks.fluent.ObjectArrayCheck
Checks that the array argument's length is between the two given numbers, throwing an exception otherwise.
hasLengthBetween(int, int) - Method in class ch.trick17.betterchecks.fluent.PrimitiveArrayCheck
Checks that the array argument's length is between the two given numbers, throwing an exception otherwise.
hasLengthBetween(int, int) - Method in class ch.trick17.betterchecks.fluent.StringCheck
Checks that the string argument's length is between the two given numbers, throwing an exception otherwise.
hasLengthWhich() - Method in class ch.trick17.betterchecks.fluent.ObjectArrayCheck
Creates an IntCheck property check for the length of the array argument.
hasLengthWhich() - Method in class ch.trick17.betterchecks.fluent.PrimitiveArrayCheck
Creates an IntCheck property check for the length of the array argument.
hasLengthWhich() - Method in class ch.trick17.betterchecks.fluent.StringCheck
Creates an IntCheck property check for the length of the string argument.
hasPathWhich() - Method in class ch.trick17.betterchecks.fluent.UrlCheck
Creates an StringCheck property check for the path of the URL argument.
hasPortWhich() - Method in class ch.trick17.betterchecks.fluent.UrlCheck
Creates an IntCheck property check for the port of the URL argument.
hasProtocol(String) - Method in class ch.trick17.betterchecks.fluent.UrlCheck
Checks that the URL argument has the given protocol, throwing an exception otherwise.
hasProtocolWhich() - Method in class ch.trick17.betterchecks.fluent.UrlCheck
Creates an StringCheck property check for the protocol of the URL argument.
hasQueryWhich() - Method in class ch.trick17.betterchecks.fluent.UrlCheck
Creates an StringCheck property check for the query of the URL argument.
hasRefWhich() - Method in class ch.trick17.betterchecks.fluent.UrlCheck
Creates an StringCheck property check for the reference (or the anchor) of the URL argument.
hasSize(int) - Method in class ch.trick17.betterchecks.fluent.CollectionCheck
Checks that the collection argument has the given size, throwing an exception otherwise.
hasSizeBetween(int, int) - Method in class ch.trick17.betterchecks.fluent.CollectionCheck
Checks that the collection argument's size is between the two given numbers, throwing an exception otherwise.
hasSizeWhich() - Method in class ch.trick17.betterchecks.fluent.CollectionCheck
Creates an IntCheck property check for the size of the collection argument.
hasUserInfoWhich() - Method in class ch.trick17.betterchecks.fluent.UrlCheck
Creates an StringCheck property check for the user info of the URL argument.

I

illegalArgumentException(String) - Static method in class ch.trick17.betterchecks.Exceptions
Returns an IllegalArgumentException with the given exception message and a cleaned-up stack trace (if enabled).
illegalArgumentException(MessageType, boolean, Object[]) - Static method in class ch.trick17.betterchecks.Exceptions
Returns an IllegalArgumentException with a message formatted using the format corresponding to the given message type and the given message arguments.
illegalArgumentException(MessageType, boolean, Object[], Throwable) - Static method in class ch.trick17.betterchecks.Exceptions
Returns an IllegalArgumentException with a message formatted using the format corresponding to the given message type and the given message arguments.
illegalStateException(String) - Static method in class ch.trick17.betterchecks.Exceptions
Returns an IllegalStateException with the given exception message and a cleaned-up stack trace (if enabled).
IntCheck - Class in ch.trick17.betterchecks.fluent
The check class for int arguments.
IntCheck(int) - Constructor for class ch.trick17.betterchecks.fluent.IntCheck
For internal use only.
intPropertyCheck(int, String) - Method in class ch.trick17.betterchecks.fluent.ObjectBaseCheck
Creates an int property check for this argument.
InvalidCheckException - Exception in ch.trick17.betterchecks
Indicates that the contract of a check object has been violated.
InvalidCheckException(String) - Constructor for exception ch.trick17.betterchecks.InvalidCheckException
Constructs a new invalid check exception with the specified detail message.
inverted - Variable in class ch.trick17.betterchecks.fluent.BaseCheck
The inverted flag.
is(double) - Method in class ch.trick17.betterchecks.fluent.DoubleCheck
Checks that the double argument is equal to the given number, throwing an exception otherwise.
is(int) - Method in class ch.trick17.betterchecks.fluent.IntCheck
Checks that the int argument is equal to the given number, throwing an exception otherwise.
is(long) - Method in class ch.trick17.betterchecks.fluent.LongCheck
Checks that the long argument is equal to the given number, throwing an exception otherwise.
is(Number) - Method in class ch.trick17.betterchecks.fluent.NumberCheck
Checks that the argument is equal (equivalent) to the given Number, throwing an exception otherwise.
is(String) - Method in class ch.trick17.betterchecks.fluent.StringCheck
Checks that the string argument is the same string as the given one, throwing an exception otherwise.
isBetween(double, double) - Method in class ch.trick17.betterchecks.fluent.DoubleCheck
Checks that the double argument is greater than or equal to min and less than or equal to max, throwing an exception otherwise.
isBetween(int, int) - Method in class ch.trick17.betterchecks.fluent.IntCheck
Checks that the int argument is greater than or equal to min and less than or equal to max, throwing an exception otherwise.
isBetween(long, long) - Method in class ch.trick17.betterchecks.fluent.LongCheck
Checks that the long argument is greater than or equal to min and less than or equal to max, throwing an exception otherwise.
isBetween(Number, Number) - Method in class ch.trick17.betterchecks.fluent.NumberCheck
Checks that the Number argument is greater than or equal to min and less than or equal to max, throwing an exception otherwise.
isCleanStackTracesEnabled() - Method in class ch.trick17.betterchecks.Config
Indicates whether stack trace cleaning is enabled.
isEqualTo(Object) - Method in class ch.trick17.betterchecks.fluent.ObjectBaseCheck
Checks that the argument is equal to the given object, throwing an exception otherwise.
isGreaterThan(double) - Method in class ch.trick17.betterchecks.fluent.DoubleCheck
Checks that the double argument is (strictly) greater than the given number, throwing an exception otherwise.
isGreaterThan(int) - Method in class ch.trick17.betterchecks.fluent.IntCheck
Checks that the int argument is (strictly) greater than the given number, throwing an exception otherwise.
isGreaterThan(long) - Method in class ch.trick17.betterchecks.fluent.LongCheck
Checks that the long argument is (strictly) greater than the given number, throwing an exception otherwise.
isGreaterThan(Number) - Method in class ch.trick17.betterchecks.fluent.NumberCheck
Checks that the argument is (strictly) greater than the given Number, throwing an exception otherwise.
isInstanceOf(Class<?>) - Method in class ch.trick17.betterchecks.fluent.ObjectBaseCheck
Checks that the argument is an instance of the given type, throwing an exception otherwise.
isInt() - Method in class ch.trick17.betterchecks.fluent.StringCheck
Checks that the string argument is is a valid int, throwing an exception otherwise.
isIntWhich() - Method in class ch.trick17.betterchecks.fluent.StringCheck
First checks that the string argument is a valid int and then "converts" this check into an IntCheck and returns it.
isLessThan(double) - Method in class ch.trick17.betterchecks.fluent.DoubleCheck
Checks that the double argument is (strictly) less than the given number, throwing an exception otherwise.
isLessThan(int) - Method in class ch.trick17.betterchecks.fluent.IntCheck
Checks that the long argument is (strictly) less than the given number, throwing an exception otherwise.
isLessThan(long) - Method in class ch.trick17.betterchecks.fluent.LongCheck
Checks that the long argument is (strictly) less than the given number, throwing an exception otherwise.
isLessThan(Number) - Method in class ch.trick17.betterchecks.fluent.NumberCheck
Checks that the argument is (strictly) less than the given Number , throwing an exception otherwise.
isLoadedFromConfigFile() - Method in class ch.trick17.betterchecks.Config
Indicates whether a valid config file was loaded.
isNegative() - Method in class ch.trick17.betterchecks.fluent.DoubleCheck
Checks that the double argument is negative, throwing an exception otherwise.
isNegative() - Method in class ch.trick17.betterchecks.fluent.IntCheck
Checks that the int argument is negative, throwing an exception otherwise.
isNegative() - Method in class ch.trick17.betterchecks.fluent.LongCheck
Checks that the long argument is negative, throwing an exception otherwise.
isNegative() - Method in class ch.trick17.betterchecks.fluent.NumberCheck
Checks that the argument is negative, throwing an exception otherwise.
isNotEmpty() - Method in class ch.trick17.betterchecks.fluent.CollectionCheck
Checks that the collection argument is not empty (meaning it has a size greater than zero), throwing an exception otherwise.
isNotEmpty() - Method in class ch.trick17.betterchecks.fluent.ObjectArrayCheck
Checks that the array argument is not empty (meaning it has a length greater than zero), throwing an exception otherwise.
isNotEmpty() - Method in class ch.trick17.betterchecks.fluent.PrimitiveArrayCheck
Checks that the array argument is not empty (meaning it has a length greater than zero), throwing an exception otherwise.
isNotEmpty() - Method in class ch.trick17.betterchecks.fluent.StringCheck
Checks that the string argument is not empty, throwing an exception otherwise.
isNotInfinite() - Method in class ch.trick17.betterchecks.fluent.DoubleCheck
Checks that the double argument is not infinite (positive or negative), throwing an exception otherwise.
isNotNaN() - Method in class ch.trick17.betterchecks.fluent.DoubleCheck
Checks that the double argument is not NaN (not a number, see Double.NaN), throwing an exception otherwise.
isNotNull() - Method in class ch.trick17.betterchecks.fluent.ObjectBaseCheck
Checks that the argument is not null, throwing an exception otherwise.
isNotWhitespace() - Method in class ch.trick17.betterchecks.fluent.StringCheck
Checks that the string argument is not empty and does not consist entirely of whitespace, throwing an exception otherwise.
isNullOr() - Method in class ch.trick17.betterchecks.fluent.ObjectBaseCheck
Allow the argument to be null.
isPositive() - Method in class ch.trick17.betterchecks.fluent.DoubleCheck
Checks that the double argument is positive, throwing an exception otherwise.
isPositive() - Method in class ch.trick17.betterchecks.fluent.IntCheck
Checks that the int argument is positive, throwing an exception otherwise.
isPositive() - Method in class ch.trick17.betterchecks.fluent.LongCheck
Checks that the long argument is positive, throwing an exception otherwise.
isPositive() - Method in class ch.trick17.betterchecks.fluent.NumberCheck
Checks that the argument is positive, throwing an exception otherwise.
isSameAs(Object) - Method in class ch.trick17.betterchecks.fluent.ObjectBaseCheck
Checks that the argument is the same instance as the given object, throwing an exception otherwise.
isUrl() - Method in class ch.trick17.betterchecks.fluent.StringCheck
Checks that the string argument is is a valid URL, throwing an exception otherwise.
isUrlWhich() - Method in class ch.trick17.betterchecks.fluent.StringCheck
First checks that the string argument is a valid URL and then "converts" this check into an UrlCheck and returns it.
isValidIndex(int) - Method in class ch.trick17.betterchecks.fluent.IntCheck
Checks that the int argument is a valid index in a Collection or array with the given size or length, throwing an exception otherwise.
isValidIndex(Collection<?>) - Method in class ch.trick17.betterchecks.fluent.IntCheck
Checks that the int argument is a valid index for the given Collection, throwing an exception otherwise.
isValidIndex(Object[]) - Method in class ch.trick17.betterchecks.fluent.IntCheck
Checks that the int argument is a valid index for the given array, throwing an exception otherwise.

L

LongCheck - Class in ch.trick17.betterchecks.fluent
The check class for long arguments.
LongCheck(long) - Constructor for class ch.trick17.betterchecks.fluent.LongCheck
For internal use only.

M

matches(String) - Method in class ch.trick17.betterchecks.fluent.StringCheck
Checks that the string argument matches the given regular expression, throwing an exception otherwise.
matches(Pattern) - Method in class ch.trick17.betterchecks.fluent.StringCheck
Checks that the string argument matches the given compiled regular expression pattern, throwing an exception otherwise.
me() - Method in class ch.trick17.betterchecks.fluent.BaseCheck
Simply casts this check to the C type parameter (which should always be equal to the class of the concrete check).
MessageType - Enum in ch.trick17.betterchecks
The MessageType enum defines the types of exception messages that are used in the exceptions thrown by the various checks of the Better Checks library.

N

named(String) - Method in class ch.trick17.betterchecks.fluent.BaseCheck
Gives the argument to be checked a name.
not() - Method in class ch.trick17.betterchecks.fluent.BaseCheck
Inverts the following check.
nullAllowed - Variable in class ch.trick17.betterchecks.fluent.ObjectBaseCheck
This flag indicates that null is a valid value for the argument of this check.
NumberCheck - Class in ch.trick17.betterchecks.fluent
The check class for Number arguments.
NumberCheck(Number) - Constructor for class ch.trick17.betterchecks.fluent.NumberCheck
For internal use only.

O

ObjectArrayCheck - Class in ch.trick17.betterchecks.fluent
The check class for object arrays.
ObjectArrayCheck(Object[]) - Constructor for class ch.trick17.betterchecks.fluent.ObjectArrayCheck
For internal use only.
ObjectBaseCheck<T,C extends ObjectBaseCheck<T,C>> - Class in ch.trick17.betterchecks.fluent
The base class for all object checks (as opposed to primitive value checks).
ObjectBaseCheck(T) - Constructor for class ch.trick17.betterchecks.fluent.ObjectBaseCheck
 
ObjectCheck - Class in ch.trick17.betterchecks.fluent
The most general check class, which supports all non-primitive arguments.
ObjectCheck(Object) - Constructor for class ch.trick17.betterchecks.fluent.ObjectCheck
For internal use only.
objectPropertyCheck(Class<C1>, T1, String) - Method in class ch.trick17.betterchecks.fluent.ObjectBaseCheck
Creates an object property check for this argument.
onModuleLoad() - Method in class ch.trick17.betterchecks.ForceCompilationEntryPoint
 

P

PrimitiveArrayCheck - Class in ch.trick17.betterchecks.fluent
The check class for all types of primitive arrays.
PrimitiveArrayCheck(Object, int) - Constructor for class ch.trick17.betterchecks.fluent.PrimitiveArrayCheck
For internal use only.
PrimitiveBaseCheck<C extends PrimitiveBaseCheck<C>> - Class in ch.trick17.betterchecks.fluent
The base class for all primitive value checks.
PrimitiveBaseCheck() - Constructor for class ch.trick17.betterchecks.fluent.PrimitiveBaseCheck
 

S

startsWith(String) - Method in class ch.trick17.betterchecks.fluent.StringCheck
Checks that the string argument starts with the given string, throwing an exception otherwise.
state(boolean, String) - Static method in class ch.trick17.betterchecks.Check
A simple check that throws an IllegalStateException with the given message if the given condition is false.
StringCheck - Class in ch.trick17.betterchecks.fluent
The check class for String arguments.
StringCheck(String) - Constructor for class ch.trick17.betterchecks.fluent.StringCheck
For internal use only.

T

that(Object) - Static method in class ch.trick17.betterchecks.Check
Returns a generic ObjectCheck which can be use to check basic properties of all objects, e.g.
that(String) - Static method in class ch.trick17.betterchecks.Check
Returns a StringCheck which can be use to check various properties of a String, e.g.
that(Object[]) - Static method in class ch.trick17.betterchecks.Check
Returns a ObjectArrayCheck which can be use to check various properties of an object array (Object[]), e.g.
that(boolean[]) - Static method in class ch.trick17.betterchecks.Check
Returns a PrimitiveArrayCheck which can be use to check various properties of a primitive array (e.g.
that(byte[]) - Static method in class ch.trick17.betterchecks.Check
Returns a PrimitiveArrayCheck which can be use to check various properties of a primitive array (e.g.
that(char[]) - Static method in class ch.trick17.betterchecks.Check
Returns a PrimitiveArrayCheck which can be use to check various properties of a primitive array (e.g.
that(double[]) - Static method in class ch.trick17.betterchecks.Check
Returns a PrimitiveArrayCheck which can be use to check various properties of a primitive array (e.g.
that(float[]) - Static method in class ch.trick17.betterchecks.Check
Returns a PrimitiveArrayCheck which can be use to check various properties of a primitive array (e.g.
that(int[]) - Static method in class ch.trick17.betterchecks.Check
Returns a PrimitiveArrayCheck which can be use to check various properties of a primitive array (e.g.
that(long[]) - Static method in class ch.trick17.betterchecks.Check
Returns a PrimitiveArrayCheck which can be use to check various properties of a primitive array (e.g.
that(short[]) - Static method in class ch.trick17.betterchecks.Check
Returns a PrimitiveArrayCheck which can be use to check various properties of a primitive array (e.g.
that(Collection<?>) - Static method in class ch.trick17.betterchecks.Check
Returns a CollectionCheck which can be use to check various properties of a Collection, e.g.
that(Number) - Static method in class ch.trick17.betterchecks.Check
Returns a NumberCheck which can be use to check various properties of a Number, e.g.
that(URL) - Static method in class ch.trick17.betterchecks.Check
Returns an UrlCheck which can be use to check various properties of an URL, e.g.
that(int) - Static method in class ch.trick17.betterchecks.Check
Returns an IntCheck which can be use to check various properties of an int, e.g.
that(long) - Static method in class ch.trick17.betterchecks.Check
Returns a LongCheck which can be use to check various properties of a long, e.g.
that(double) - Static method in class ch.trick17.betterchecks.Check
Returns a DoubleCheck which can be use to check various properties of an double, e.g.

U

UrlCheck - Class in ch.trick17.betterchecks.fluent
The check class for URL arguments.
UrlCheck(URL) - Constructor for class ch.trick17.betterchecks.fluent.UrlCheck
For internal use only.

V

valueOf(String) - Static method in enum ch.trick17.betterchecks.MessageType
Returns the enum constant of this type with the specified name.
values() - Static method in enum ch.trick17.betterchecks.MessageType
Returns an array containing the constants of this enum type, in the order they are declared.
A B C D E F G H I L M N O P S T U V 
Skip navigation links

Copyright © 2012–2017 Michael Faes. All rights reserved.