public static enum BrooklynNode.ExistingFileBehaviour extends java.lang.Enum<BrooklynNode.ExistingFileBehaviour>
| Enum Constant and Description |
|---|
DO_NOT_USE |
FAIL |
OVERWRITE |
USE_EXISTING |
| Modifier and Type | Method and Description |
|---|---|
static BrooklynNode.ExistingFileBehaviour |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BrooklynNode.ExistingFileBehaviour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BrooklynNode.ExistingFileBehaviour DO_NOT_USE
public static final BrooklynNode.ExistingFileBehaviour USE_EXISTING
public static final BrooklynNode.ExistingFileBehaviour OVERWRITE
public static final BrooklynNode.ExistingFileBehaviour FAIL
public static BrooklynNode.ExistingFileBehaviour[] values()
for (BrooklynNode.ExistingFileBehaviour c : BrooklynNode.ExistingFileBehaviour.values()) System.out.println(c);
public static BrooklynNode.ExistingFileBehaviour 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 null