public interface IReadOnlyNamedValues<TValue>
Modifier and Type | Method and Description |
---|---|
java.util.Collection<java.lang.String> |
getNames()
Returns all names (maybe empty but never null).
|
TValue |
getValue(java.lang.String name)
Returns the value associated with the given name.
|
boolean |
isEmpty()
Returns true if the receiver does not contain any data.
|
boolean isEmpty()
java.util.Collection<java.lang.String> getNames()
TValue getValue(java.lang.String name)
name
- The identifier for which the associated value must be returned (must not be null).