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 of Boolean to which the specified key is mapped.
      java.util.List<java.lang.Integer> getIntegerList​(java.lang.String key)
      Returns the List of Integer to which the specified key is mapped.
      java.util.List<java.lang.Long> getLongList​(java.lang.String key)
      Returns the List of Long to which the specified key is mapped.
      java.util.List<java.lang.Short> getShortList​(java.lang.String key)
      Returns the List of Short to which the specified key is mapped.
      java.util.List<java.lang.String> getStringList​(java.lang.String key)
      Returns the List of String to which the specified key is mapped or null if this map contains no mapping for the key
      java.util.List<java.lang.Boolean> setBooleanList​(java.lang.String key, java.util.List<java.lang.Boolean> value)
      Associates the specified List of Boolean with 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 of Integer with 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 of Long with 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 of Short with 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 of String with the specified key in this map.
    • Method Detail

      • getBooleanList

        java.util.List<java.lang.Boolean> getBooleanList​(java.lang.String key)
        Returns the List of Boolean to which the specified key is mapped. or null if 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 of Boolean with 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 associated
        value - the value to be associated with the specified key.
        Returns:
        A read-only List of Boolean representing the stored data
      • getShortList

        java.util.List<java.lang.Short> getShortList​(java.lang.String key)
        Returns the List of Short to which the specified key is mapped. or null if 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 of Short with 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 associated
        value - the value to be associated with the specified key.
        Returns:
        A read-only List of Short representing the stored data
      • getIntegerList

        java.util.List<java.lang.Integer> getIntegerList​(java.lang.String key)
        Returns the List of Integer to which the specified key is mapped. or null if 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 of Integer with 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 associated
        value - the value to be associated with the specified key.
        Returns:
        A read-only List of Integer representing the stored data
      • getLongList

        java.util.List<java.lang.Long> getLongList​(java.lang.String key)
        Returns the List of Long to which the specified key is mapped. or null if 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 of Long with 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 associated
        value - the value to be associated with the specified key.
        Returns:
        A read-only List of Long representing the stored data
      • getStringList

        java.util.List<java.lang.String> getStringList​(java.lang.String key)
        Returns the List of String to which the specified key is mapped or null if 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 null if 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 of String with 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 associated
        value - the value to be associated with the specified key.
        Returns:
        A read-only List of String representing the stored data