public static enum BuckGlobalStateLifecycleManager.LifecycleStatus extends Enum<BuckGlobalStateLifecycleManager.LifecycleStatus>
BuckGlobalState
is reused, or why it can't be reusedEnum Constant and Description |
---|
INVALIDATED_BUCK_CONFIG_CHANGED |
INVALIDATED_FILESYSTEM_CHANGED |
INVALIDATED_NO_WATCHMAN |
INVALIDATED_TOOLCHAINS_INCOMPATIBLE |
INVALIDATED_WATCHMAN_RESTARTED |
NEW |
REUSED |
Modifier and Type | Method and Description |
---|---|
Optional<String> |
getLifecycleStatusString()
Get the string to be logged as an event, if an event should be logged.
|
static BuckGlobalStateLifecycleManager.LifecycleStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuckGlobalStateLifecycleManager.LifecycleStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuckGlobalStateLifecycleManager.LifecycleStatus REUSED
public static final BuckGlobalStateLifecycleManager.LifecycleStatus NEW
public static final BuckGlobalStateLifecycleManager.LifecycleStatus INVALIDATED_NO_WATCHMAN
public static final BuckGlobalStateLifecycleManager.LifecycleStatus INVALIDATED_WATCHMAN_RESTARTED
public static final BuckGlobalStateLifecycleManager.LifecycleStatus INVALIDATED_FILESYSTEM_CHANGED
public static final BuckGlobalStateLifecycleManager.LifecycleStatus INVALIDATED_BUCK_CONFIG_CHANGED
public static final BuckGlobalStateLifecycleManager.LifecycleStatus INVALIDATED_TOOLCHAINS_INCOMPATIBLE
public static BuckGlobalStateLifecycleManager.LifecycleStatus[] values()
for (BuckGlobalStateLifecycleManager.LifecycleStatus c : BuckGlobalStateLifecycleManager.LifecycleStatus.values()) System.out.println(c);
public static BuckGlobalStateLifecycleManager.LifecycleStatus 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 null