Interface IWithAttributes

    • Method Detail

      • get

        Object get​(String key)
        Returns the Object value 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
      • getString

        String getString​(String key)
        Returns the String value to which the specified key is mapped, or null if this map contains no String mapping for the key.
        Parameters:
        key - the key whose associated value is to be returned
        Returns:
        the String value to which the specified key is mapped, or null if this map contains no String mapping for the key
      • getCollection

        <T> Collection<T> getCollection​(String key)
        Returns the Collection value to which the specified key is mapped, or null if this map contains no Collection mapping for the key.
        Type Parameters:
        T - type of items
        Parameters:
        key - the key whose associated value is to be returned
        Returns:
        the Collection value to which the specified key is mapped, or null if this map contains no Collection mapping for the key
        Since:
        5502
      • put

        void put​(String key,
                 Object value)
        Put a key / value pair as a new attribute. Overrides key / value pair with the same key (if present).
        Parameters:
        key - the key
        value - the value