public enum NodeSystemProperties extends java.lang.Enum<NodeSystemProperties>
System properties used by the node. See docs/user/properties.md
for details.
Enum Constant and Description |
---|
CONFIG |
HAZELCAST_APPENDER |
HAZELCAST_CONFIG_MAIN |
HAZELCAST_CONFIG_USER |
LOG_CONSOLE_LEVEL |
LOG_FILE_LEVEL |
Modifier and Type | Field and Description |
---|---|
java.lang.String |
defaultValue |
java.lang.String |
propertyName |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
get() |
java.lang.String |
set(java.lang.String value) |
static NodeSystemProperties |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeSystemProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeSystemProperties CONFIG
public static final NodeSystemProperties LOG_FILE_LEVEL
public static final NodeSystemProperties LOG_CONSOLE_LEVEL
public static final NodeSystemProperties HAZELCAST_CONFIG_MAIN
public static final NodeSystemProperties HAZELCAST_CONFIG_USER
public static final NodeSystemProperties HAZELCAST_APPENDER
public final java.lang.String propertyName
public final java.lang.String defaultValue
public static NodeSystemProperties[] values()
for (NodeSystemProperties c : NodeSystemProperties.values()) System.out.println(c);
public static NodeSystemProperties valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String get()
public java.lang.String set(java.lang.String value)