Top Description Fields Methods
io.netty.util

public Interface UncheckedBooleanSupplier

extends BooleanSupplier

Represents a supplier of boolean-valued results which doesn't throw any checked exceptions.

Field Summary

Modifier and TypeField and Description
public static final UncheckedBooleanSupplier
FALSE_SUPPLIER

Hides io.netty.util.BooleanSupplier.FALSE_SUPPLIER.

A supplier which always returns false and never throws.
public static final UncheckedBooleanSupplier
TRUE_SUPPLIER

Hides io.netty.util.BooleanSupplier.TRUE_SUPPLIER.

A supplier which always returns true and never throws.

Method Summary

Modifier and TypeMethod and Description
public boolean

Returns:

a boolean value.
get
()

Redeclares io.netty.util.BooleanSupplier.get.

Gets a boolean value.

Field Detail

FALSE_SUPPLIERback to summary
public static final UncheckedBooleanSupplier FALSE_SUPPLIER

Hides io.netty.util.BooleanSupplier.FALSE_SUPPLIER.

A supplier which always returns false and never throws.

TRUE_SUPPLIERback to summary
public static final UncheckedBooleanSupplier TRUE_SUPPLIER

Hides io.netty.util.BooleanSupplier.TRUE_SUPPLIER.

A supplier which always returns true and never throws.

Method Detail

getback to summary
public boolean get()

Redeclares io.netty.util.BooleanSupplier.get.

Gets a boolean value.

Returns:boolean

a boolean value.

Annotations
@Override