public static enum IsisConfigurationDefault.ContainsPolicy extends Enum<IsisConfigurationDefault.ContainsPolicy>
| Enum Constant and Description |
|---|
EXCEPTION
If the configuration already contains the key, then throw an exception.
|
IGNORE
If the configuration already contains the key, then ignore the new value.
|
OVERWRITE
If the configuration already contains the key, then overwrite with the new.
|
| Modifier and Type | Method and Description |
|---|---|
static IsisConfigurationDefault.ContainsPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IsisConfigurationDefault.ContainsPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IsisConfigurationDefault.ContainsPolicy IGNORE
public static final IsisConfigurationDefault.ContainsPolicy OVERWRITE
public static final IsisConfigurationDefault.ContainsPolicy EXCEPTION
public static IsisConfigurationDefault.ContainsPolicy[] values()
for (IsisConfigurationDefault.ContainsPolicy c : IsisConfigurationDefault.ContainsPolicy.values()) System.out.println(c);
public static IsisConfigurationDefault.ContainsPolicy 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 © 2010–2014 The Apache Software Foundation. All rights reserved.