Class DataProperties

  • All Implemented Interfaces:
    java.io.Serializable, Cloneable, java.util.Map<Object,​Object>

    public class DataProperties
    extends java.util.Properties
    See Also:
    Serialized Form
    • Field Summary

      • Fields inherited from class java.util.Properties

        defaults
    • Constructor Summary

      Constructors 
      Constructor Description
      DataProperties()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Date getDate​(String key)  
      java.net.InetAddress getInetAddress​(String key)  
      int getInt​(String key)  
      <T> java.util.List<T> getList​(String key, StringToElementConverter<T> stringToElementConverter)  
      String getString​(String key)  
      void setDate​(String key, java.util.Date value)  
      void setInetAddress​(String key, java.net.InetAddress value)  
      void setInt​(String key, int value)  
      void setList​(String key, java.util.List<?> value)  
      void setString​(String key, String value)  
      • Methods inherited from class java.util.Properties

        clear, clone, compute, computeIfAbsent, computeIfPresent, contains, containsKey, containsValue, elements, entrySet, equals, forEach, get, getOrDefault, getProperty, getProperty, hashCode, isEmpty, keys, keySet, list, list, load, load, loadFromXML, merge, propertyNames, put, putAll, putIfAbsent, rehash, remove, remove, replace, replace, replaceAll, save, setProperty, size, store, store, storeToXML, storeToXML, storeToXML, stringPropertyNames, toString, values
      • Methods inherited from class java.lang.Object

        finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • DataProperties

        public DataProperties()
    • Method Detail

      • setString

        public void setString​(String key,
                              String value)
      • getString

        public String getString​(String key)
      • setDate

        public void setDate​(String key,
                            java.util.Date value)
      • getDate

        public java.util.Date getDate​(String key)
      • setInt

        public void setInt​(String key,
                           int value)
      • getInt

        public int getInt​(String key)
      • setList

        public void setList​(String key,
                            java.util.List<?> value)
      • getList

        public <T> java.util.List<T> getList​(String key,
                                             StringToElementConverter<T> stringToElementConverter)
      • setInetAddress

        public void setInetAddress​(String key,
                                   java.net.InetAddress value)
      • getInetAddress

        public java.net.InetAddress getInetAddress​(String key)