public interface UncheckedBooleanSupplier extends BooleanSupplier
boolean
-valued results which doesn't throw any checked exceptions.Modifier and Type | Field and Description |
---|---|
static UncheckedBooleanSupplier |
FALSE_SUPPLIER
A supplier which always returns
false and never throws. |
static UncheckedBooleanSupplier |
TRUE_SUPPLIER
A supplier which always returns
true and never throws. |
Modifier and Type | Method and Description |
---|---|
boolean |
get()
Gets a boolean value.
|
static final UncheckedBooleanSupplier FALSE_SUPPLIER
false
and never throws.static final UncheckedBooleanSupplier TRUE_SUPPLIER
true
and never throws.boolean get()
get
in interface BooleanSupplier
Copyright © 2008–2024 The Netty Project. All rights reserved.