public enum BrooklynObjectManagementMode extends java.lang.Enum<BrooklynObjectManagementMode>
ManagementContext| Enum Constant and Description |
|---|
LOADED_READ_ONLY
item is loaded but read-only (ie not actively managed here)
|
MANAGED_PRIMARY
item is actively managed here
|
NONEXISTENT
item does not exist, not in memory, nor persisted (e.g.
|
UNMANAGED_PERSISTED
item exists or existed elsewhere, i.e.
|
| Modifier and Type | Method and Description |
|---|---|
static BrooklynObjectManagementMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BrooklynObjectManagementMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BrooklynObjectManagementMode NONEXISTENT
public static final BrooklynObjectManagementMode UNMANAGED_PERSISTED
public static final BrooklynObjectManagementMode LOADED_READ_ONLY
public static final BrooklynObjectManagementMode MANAGED_PRIMARY
public static BrooklynObjectManagementMode[] values()
for (BrooklynObjectManagementMode c : BrooklynObjectManagementMode.values()) System.out.println(c);
public static BrooklynObjectManagementMode 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