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