public interface Properties extends Dictionary<String,String>
Properties are a specialization of the Dictionary. As the
name says its on a String pairs key/value collection as properties
usually occur in pure text form to be converted to the required data types.
For this reason, the Properties interface provides additional
conversion methods.| Modifier and Type | Interface and Description |
|---|---|
static interface |
Properties.ClearableProperties |
static interface |
Properties.MutableProperties |
static interface |
Properties.PropertiesBuilder |
Dictionary.ClearableDictionary<K,V>, Dictionary.MutableDictionary<K,V>Keys.ClearableKeys<K,V>, Keys.MutableKeys<K,V>| Modifier and Type | Method and Description |
|---|---|
default Map<String,String> |
toMap()
This method creates a
Map instance from this Properties
instance's elements (key/value-pairs) as of interoperability reasons. |
default Properties |
toProperties()
This method creates a
Properties instance from this
Properties instance's elements (key/value-pairs) as of
interoperability reasons. |
containsKey, get, keySet, valuesisEmpty, sizedefault Properties toProperties()
Properties instance from this
Properties instance's elements (key/value-pairs) as of
interoperability reasons.Properties object from the herein contained
key/value-pairs .Copyright © 2017. All rights reserved.