Holderpublic final class Holder extends Object
Fields Summary |
---|
public T | valueThe value contained in the holder. |
Constructors Summary |
---|
public Holder()Creates a new holder with a null value.
| public Holder(T value)Create a new holder with the specified value.
this.value = value;
|
|