Returns all data sets for a key.
More formally, if this map contains a mapping from a key
k to a value v such that (key==null ? k==null : key.equals(k)),
then v will be part of the returned list.
Parameters:
key - the key whose associated value is to be returned.
Returns:
the list of data sets or null if none is found for given key.
Checks if any data set contains the specified value.
The values are considered the same if they are equal according to
the String equals method.
More formally, returns true if and only if this map contains
at least one mapping to a value v such that
(value==null ? v==null : value.equals(v)).
Parameters:
value - the value to check for.
Returns:
true if the value is saved in any data set, false otherwise.
isEmpty
public boolean isEmpty()
Checks if this meta data contains data sets.
Returns:
true if there are no key to data set mappings, false otherwise.