public static enum HazelcastConfiguration.LoggingType extends Enum<HazelcastConfiguration.LoggingType>
Enum Constant and Description |
---|
JDK
JDK logging (default)
|
LOG4J
Log4j
|
NONE
disable logging
|
SLF4J
Slf4j
|
Modifier and Type | Method and Description |
---|---|
static HazelcastConfiguration.LoggingType |
toLoggingType(String propertyValue) |
static HazelcastConfiguration.LoggingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HazelcastConfiguration.LoggingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HazelcastConfiguration.LoggingType JDK
public static final HazelcastConfiguration.LoggingType LOG4J
public static final HazelcastConfiguration.LoggingType SLF4J
public static final HazelcastConfiguration.LoggingType NONE
public static HazelcastConfiguration.LoggingType[] values()
for (HazelcastConfiguration.LoggingType c : HazelcastConfiguration.LoggingType.values()) System.out.println(c);
public static HazelcastConfiguration.LoggingType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static HazelcastConfiguration.LoggingType toLoggingType(String propertyValue)
Copyright © 2015. All Rights Reserved.