public enum ConfigCheckMode extends Enum<ConfigCheckMode>
| Enum Constant and Description | 
|---|
| SILENTIgnore configuration conflicts. | 
| THROW_EXCEPTIONThrow  ConfigurationExceptionwhen a configuration conflict is detected | 
| WARNINGLog 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 © 2021 Hazelcast, Inc.. All Rights Reserved.