Package herddb.utils
Class SystemProperties
- java.lang.Object
-
- herddb.utils.SystemProperties
-
public class SystemProperties extends Object
- Author:
- enrico.olivelli
-
-
Constructor Summary
Constructors Constructor Description SystemProperties()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleangetBooleanSystemProperty(String name, boolean defaultvalue)static intgetIntSystemProperty(String name, int defaultvalue)static intgetIntSystemProperty(String name, int defaultvalue, String description)static longgetLongSystemProperty(String name, long defaultvalue)static StringgetStringSystemProperty(String name, String defaultvalue)
-
-
-
Method Detail
-
getStringSystemProperty
public static String getStringSystemProperty(String name, String defaultvalue)
-
getIntSystemProperty
public static int getIntSystemProperty(String name, int defaultvalue)
-
getIntSystemProperty
public static int getIntSystemProperty(String name, int defaultvalue, String description)
-
getLongSystemProperty
public static long getLongSystemProperty(String name, long defaultvalue)
-
getBooleanSystemProperty
public static boolean getBooleanSystemProperty(String name, boolean defaultvalue)
-
-