Interface PrimitiveListSupport
-
- All Known Subinterfaces:
Node
public interface PrimitiveListSupport
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.Boolean>getBooleanList(java.lang.String key)Returns the List ofBooleanto which the specified key is mapped.java.util.List<java.lang.Integer>getIntegerList(java.lang.String key)Returns the List ofIntegerto which the specified key is mapped.java.util.List<java.lang.Long>getLongList(java.lang.String key)Returns the List ofLongto which the specified key is mapped.java.util.List<java.lang.Short>getShortList(java.lang.String key)Returns the List ofShortto which the specified key is mapped.java.util.List<java.lang.String>getStringList(java.lang.String key)Returns the List ofStringto which the specified key is mapped ornullif this map contains no mapping for the keyjava.util.List<java.lang.Boolean>setBooleanList(java.lang.String key, java.util.List<java.lang.Boolean> value)Associates the specified List ofBooleanwith the specified key in this map.java.util.List<java.lang.Integer>setIntegerList(java.lang.String key, java.util.List<java.lang.Integer> value)Associates the specified List ofIntegerwith the specified key in this map.java.util.List<java.lang.Long>setLongList(java.lang.Long key, java.util.List<java.lang.Long> value)Associates the specified List ofLongwith the specified key in this map.java.util.List<java.lang.Short>setShortList(java.lang.String key, java.util.List<java.lang.Short> value)Associates the specified List ofShortwith the specified key in this map.java.util.List<java.lang.String>setStringList(java.lang.String key, java.util.List<java.lang.String> value)Associates the specified List ofStringwith the specified key in this map.
-
-
-
Method Detail
-
getBooleanList
java.util.List<java.lang.Boolean> getBooleanList(java.lang.String key)
Returns the List ofBooleanto which the specified key is mapped. ornullif this map contains no mapping for the key- Parameters:
key- the key whose associated value is to be returned- Returns:
- the value to which the specified key is mapped, or new empty list if this map contains no mapping for the key
-
setBooleanList
java.util.List<java.lang.Boolean> setBooleanList(java.lang.String key, java.util.List<java.lang.Boolean> value)Associates the specified List ofBooleanwith the specified key in this map. If the map previously contained a mapping for the key, the old value is replaced by the specified value.- Parameters:
key- the key with which the specified value is to be associatedvalue- the value to be associated with the specified key.- Returns:
- A read-only
ListofBooleanrepresenting the stored data
-
getShortList
java.util.List<java.lang.Short> getShortList(java.lang.String key)
Returns the List ofShortto which the specified key is mapped. ornullif this map contains no mapping for the key- Parameters:
key- the key whose associated value is to be returned- Returns:
- the value to which the specified key is mapped, or new empty list if this map contains no mapping for the key
-
setShortList
java.util.List<java.lang.Short> setShortList(java.lang.String key, java.util.List<java.lang.Short> value)Associates the specified List ofShortwith the specified key in this map. If the map previously contained a mapping for the key, the old value is replaced by the specified value.- Parameters:
key- the key with which the specified value is to be associatedvalue- the value to be associated with the specified key.- Returns:
- A read-only
ListofShortrepresenting the stored data
-
getIntegerList
java.util.List<java.lang.Integer> getIntegerList(java.lang.String key)
Returns the List ofIntegerto which the specified key is mapped. ornullif this map contains no mapping for the key- Parameters:
key- the key whose associated value is to be returned- Returns:
- the value to which the specified key is mapped, or new empty list if this map contains no mapping for the key
-
setIntegerList
java.util.List<java.lang.Integer> setIntegerList(java.lang.String key, java.util.List<java.lang.Integer> value)Associates the specified List ofIntegerwith the specified key in this map. If the map previously contained a mapping for the key, the old value is replaced by the specified value.- Parameters:
key- the key with which the specified value is to be associatedvalue- the value to be associated with the specified key.- Returns:
- A read-only
ListofIntegerrepresenting the stored data
-
getLongList
java.util.List<java.lang.Long> getLongList(java.lang.String key)
Returns the List ofLongto which the specified key is mapped. ornullif this map contains no mapping for the key- Parameters:
key- the key whose associated value is to be returned- Returns:
- the value to which the specified key is mapped, or new empty list if this map contains no mapping for the key
-
setLongList
java.util.List<java.lang.Long> setLongList(java.lang.Long key, java.util.List<java.lang.Long> value)Associates the specified List ofLongwith the specified key in this map. If the map previously contained a mapping for the key, the old value is replaced by the specified value.- Parameters:
key- the key with which the specified value is to be associatedvalue- the value to be associated with the specified key.- Returns:
- A read-only
ListofLongrepresenting the stored data
-
getStringList
java.util.List<java.lang.String> getStringList(java.lang.String key)
Returns the List ofStringto which the specified key is mapped ornullif this map contains no mapping for the key- Parameters:
key- the key whose associated value is to be returned- Returns:
- the value to which the specified key is mapped, or
nullif this map contains no mapping for the key
-
setStringList
java.util.List<java.lang.String> setStringList(java.lang.String key, java.util.List<java.lang.String> value)Associates the specified List ofStringwith the specified key in this map. If the map previously contained a mapping for the key, the old value is replaced by the specified value.- Parameters:
key- the key with which the specified value is to be associatedvalue- the value to be associated with the specified key.- Returns:
- A read-only
ListofStringrepresenting the stored data
-
-