See: Description
| Interface | Description |
|---|---|
| Copiable<T> |
An object that can be copied to another.
|
| Class | Description |
|---|---|
| Lazy<T> |
An object that automatically loads an object of type
T by using a Supplier during the first call to
Lazy.get(). |
| LazyBoolean |
An object that automatically loads a
boolean by using a BooleanSupplier during the first call to
LazyBoolean.getAsBoolean(). |
| LazyDouble |
An object that automatically loads a
double by using a DoubleSupplier during the first call to LazyDouble.getAsDouble(). |
| LazyInt |
An object that automatically loads an
integer by using a IntSupplier during the first call to LazyInt.getAsInt(). |
| LazyLong |
An object that automatically loads a
long by using a LongSupplier during the first call to LazyLong.getAsLong(). |
| LazyReference<T> |
An object that automatically loads an object of type
T by using a Supplier. |
| Preconditions |
Static convenience methods that help a method or constructor check whether it was invoked correctly (whether its
preconditions have been met).
|
| Throwables |
Copyright © 2017–2019 Atlanmod. All rights reserved.