Interface UncheckedBooleanSupplier
- All Superinterfaces:
BooleanSupplier
Represents a supplier of
boolean-valued results which doesn't throw any checked exceptions.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final UncheckedBooleanSupplierA supplier which always returnsfalseand never throws.static final UncheckedBooleanSupplierA supplier which always returnstrueand never throws. -
Method Summary
-
Field Details
-
FALSE_SUPPLIER
A supplier which always returnsfalseand never throws. -
TRUE_SUPPLIER
A supplier which always returnstrueand never throws.
-
-
Method Details
-
get
boolean get()Gets a boolean value.- Specified by:
getin interfaceBooleanSupplier- Returns:
- a boolean value.
-