Class LinkedProperties

All Implemented Interfaces:
Serializable, Cloneable, Map<Object,Object>

public class LinkedProperties extends Properties
Subclass of Properties that returns keys in insertion order by keeping an internal insertion order set of keys updated on each write operation (put, putAll, clear, remove). DOES NOT CONTROL the usage of Hashtable.entrySet() which allows write operations as well.
See Also:
  • Constructor Details

    • LinkedProperties

      public LinkedProperties()
    • LinkedProperties

      public LinkedProperties(Properties _defaults)
    • LinkedProperties

      public LinkedProperties(InputStream _inputStream) throws IOException
      Constructor that reads a property list (key and element pairs) from the input byte stream.
      Parameters:
      _inputStream - the input stream
      Throws:
      IOException - if an error occurred when reading from the input stream
      See Also:
  • Method Details