Class SortedProperties
- java.lang.Object
-
- java.util.Dictionary<K,V>
-
- java.util.Hashtable<Object,Object>
-
- java.util.Properties
-
- org.dizitart.no2.mvstore.compat.v1.mvstore.util.SortedProperties
-
- All Implemented Interfaces:
Serializable,Cloneable,Map<Object,Object>
public class SortedProperties extends Properties
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SortedProperties()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SortedPropertiesfromLines(String var0)static booleangetBooleanProperty(Properties var0, String var1, boolean var2)static intgetIntProperty(Properties var0, String var1, int var2)static StringgetStringProperty(Properties var0, String var1, String var2)Enumeration<Object>keys()static SortedPropertiesloadProperties(String var0)voidstore(String var1)StringtoLines()-
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, keySet, list, list, load, load, loadFromXML, merge, propertyNames, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, save, setProperty, size, store, store, storeToXML, storeToXML, storeToXML, stringPropertyNames, toString, values
-
-
-
-
Method Detail
-
keys
public Enumeration<Object> keys()
- Overrides:
keysin classProperties
-
getBooleanProperty
public static boolean getBooleanProperty(Properties var0, String var1, boolean var2)
-
getIntProperty
public static int getIntProperty(Properties var0, String var1, int var2)
-
getStringProperty
public static String getStringProperty(Properties var0, String var1, String var2)
-
loadProperties
public static SortedProperties loadProperties(String var0) throws IOException
- Throws:
IOException
-
store
public void store(String var1) throws IOException
- Throws:
IOException
-
toLines
public String toLines()
-
fromLines
public static SortedProperties fromLines(String var0)
-
-