Uses of Interface
com.oracle.coherence.common.base.Nullable

Packages that use Nullable
Package
Description
The base package provides a number of classes to complement those in the java.lang package.
Contains various generic utilities.
  • Uses of Nullable in com.oracle.coherence.common.base

    Modifier and Type
    Method
    Description
    static <T> Nullable<T>
    Nullable.empty()
    Create an empty Nullable value.
    Nullable.of(boolean value)
    Create a Nullable representation of the specified boolean value.
    static Nullable<Byte>
    Nullable.of(byte value)
    Create a Nullable representation of the specified byte value.
    Nullable.of(double value)
    Create a Nullable representation of the specified double value.
    static Nullable<Float>
    Nullable.of(float value)
    Create a Nullable representation of the specified float value.
    Nullable.of(int value)
    Create a Nullable representation of the specified int value.
    static Nullable<Long>
    Nullable.of(long value)
    Create a Nullable representation of the specified long value.
    static Nullable<Short>
    Nullable.of(short value)
    Create a Nullable representation of the specified short value.
    Nullable.of(Boolean value)
    Create a Nullable representation of the specified Boolean value.
    static Nullable<Byte>
    Nullable.of(Byte value)
    Create a Nullable representation of the specified Byte value.
    Nullable.of(Double value)
    Create a Nullable representation of the specified Double value.
    static Nullable<Float>
    Nullable.of(Float value)
    Create a Nullable representation of the specified Float value.
    Nullable.of(Integer value)
    Create a Nullable representation of the specified Integer value.
    static Nullable<Long>
    Nullable.of(Long value)
    Create a Nullable representation of the specified Long value.
    static Nullable<Short>
    Nullable.of(Short value)
    Create a Nullable representation of the specified Short value.
    static <T> Nullable<T>
    Nullable.of(T value)
    Create a Nullable representation of the specified reference value.
    Methods in com.oracle.coherence.common.base with parameters of type Nullable
    Modifier and Type
    Method
    Description
    static <T> T
    Nullable.get(Nullable<? extends T> value)
    Return the value of the specified Nullable.
  • Uses of Nullable in com.tangosol.util

    Classes in com.tangosol.util that implement Nullable
    Modifier and Type
    Class
    Description
    final class 
    A thread-safe immutable binary object.
    class 
    A Set specialization of InflatableCollection.