Class LinkedProperties

    • Constructor Detail

      • LinkedProperties

        public LinkedProperties()
    • Method Detail

      • put

        public Object put​(Object key,
                          Object value)
        Add a property.
        Specified by:
        put in interface Map<Object,​Object>
        Overrides:
        put in class Properties
        Parameters:
        key - key with which the specified value is to be associated.
        value - value to be associated with the specified key.
        Returns:
        the linked map including the new key value pair.
      • contains

        public boolean contains​(Object value)
        Check if the property map contains a value.
        Overrides:
        contains in class Properties
        Parameters:
        value - a value to search for.
        Returns:
        true if the value is in the property map.
      • containsValue

        public boolean containsValue​(Object value)
        Alias for the contains method.
        Specified by:
        containsValue in interface Map<Object,​Object>
        Overrides:
        containsValue in class Properties
        Parameters:
        value - value whose presence in this hashtable is to be tested.
        Returns:
        true if the value is in the property map.
      • containsKey

        public boolean containsKey​(Object key)
        Check if the properties contain a specific key.
        Specified by:
        containsKey in interface Map<Object,​Object>
        Overrides:
        containsKey in class Properties
        Parameters:
        key - The possible key.
        Returns:
        true if this key exists.