public enum ChangeApplied extends Enum<ChangeApplied>
Enum Constant and Description |
---|
NO_OPERATION
No operation carried out (change had no effect)
|
SUCCESSFULLY
change applied successfully
|
UNSUCCESSFULLY
change not applied
|
Modifier and Type | Method and Description |
---|---|
static ChangeApplied |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangeApplied[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeApplied SUCCESSFULLY
public static final ChangeApplied UNSUCCESSFULLY
public static final ChangeApplied NO_OPERATION
public static ChangeApplied[] values()
for (ChangeApplied c : ChangeApplied.values()) System.out.println(c);
public static ChangeApplied 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 © 2020 The University of Manchester. All rights reserved.