public enum ConfigCheckMode extends Enum<ConfigCheckMode>
| Enum Constant and Description | 
|---|
SILENT
Ignore configuration conflicts. 
 | 
THROW_EXCEPTION
Throw  
ConfigurationException when a configuration conflict is detected | 
WARNING
Log a warning when detect a configuration conflict 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ConfigCheckMode | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ConfigCheckMode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ConfigCheckMode THROW_EXCEPTION
ConfigurationException when a configuration conflict is detectedpublic static final ConfigCheckMode WARNING
public static final ConfigCheckMode SILENT
public static ConfigCheckMode[] values()
for (ConfigCheckMode c : ConfigCheckMode.values()) System.out.println(c);
public static ConfigCheckMode 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 nullCopyright © 2018 Hazelcast, Inc.. All Rights Reserved.