Class DataProperties
- Object
-
- java.util.Dictionary<K,V>
-
- java.util.Hashtable<Object,Object>
-
- java.util.Properties
-
- mireka.transmission.queue.dataprop.DataProperties
-
- All Implemented Interfaces:
java.io.Serializable,Cloneable,java.util.Map<Object,Object>
public class DataProperties extends java.util.Properties- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DataProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.DategetDate(String key)java.net.InetAddressgetInetAddress(String key)intgetInt(String key)<T> java.util.List<T>getList(String key, StringToElementConverter<T> stringToElementConverter)StringgetString(String key)voidsetDate(String key, java.util.Date value)voidsetInetAddress(String key, java.net.InetAddress value)voidsetInt(String key, int value)voidsetList(String key, java.util.List<?> value)voidsetString(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
-
-
-
-
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)
-
-