Package jadex.collection
Class OrderedProperties
- All Implemented Interfaces:
Serializable,Cloneable,Map<Object,Object>
Class extending java.util.Properties to preserve order
by redirecting calls to an internal linked hash map.
- See Also:
-
Field Summary
FieldsFields inherited from class java.util.Properties
defaults -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Delegate.booleancontainsKey(Object key) Delegate.booleancontainsValue(Object value) Delegate.entrySet()Delegate.Delegate.booleanisEmpty()Delegate.keySet()Delegate.Delegate.voidDelegate.Delegate.intsize()Delegate.values()Delegate.Methods inherited from class java.util.Properties
clone, compute, computeIfAbsent, computeIfPresent, contains, elements, equals, forEach, getOrDefault, getProperty, getProperty, hashCode, keys, list, list, load, load, loadFromXML, merge, propertyNames, putIfAbsent, rehash, remove, replace, replace, replaceAll, save, setProperty, store, store, storeToXML, storeToXML, storeToXML, stringPropertyNames, toString
-
Field Details
-
map
The internal map.
-
-
Constructor Details
-
OrderedProperties
public OrderedProperties()
-
-
Method Details
-
size
public int size()Delegate. -
isEmpty
public boolean isEmpty()Delegate. -
containsKey
Delegate.- Specified by:
containsKeyin interfaceMap<Object,Object> - Overrides:
containsKeyin classProperties
-
containsValue
Delegate.- Specified by:
containsValuein interfaceMap<Object,Object> - Overrides:
containsValuein classProperties
-
get
Delegate. -
put
Delegate. -
remove
Delegate. -
putAll
Delegate. -
clear
public void clear()Delegate. -
keySet
Delegate. -
values
Delegate. -
entrySet
Delegate.
-