public static enum ChangeManager.ChangeOutcome extends Enum<ChangeManager.ChangeOutcome>
Enum Constant and Description |
---|
CHANGE_APPLIED |
CHANGE_NOT_APPLIED |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static ChangeManager.ChangeOutcome |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangeManager.ChangeOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeManager.ChangeOutcome UNKNOWN
public static final ChangeManager.ChangeOutcome CHANGE_APPLIED
public static final ChangeManager.ChangeOutcome CHANGE_NOT_APPLIED
public static ChangeManager.ChangeOutcome[] values()
for (ChangeManager.ChangeOutcome c : ChangeManager.ChangeOutcome.values()) System.out.println(c);
public static ChangeManager.ChangeOutcome 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 © 2001-2017 The Apache Software Foundation. All Rights Reserved.