public enum NotificationType extends Enum<NotificationType>
| Enum Constant and Description |
|---|
AVAIL_CHANGE |
AVAIL_STARTING |
RESOURCE_ADDED |
| Modifier and Type | Method and Description |
|---|---|
List<String> |
getSupportedProperties() |
static NotificationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationType RESOURCE_ADDED
public static final NotificationType AVAIL_STARTING
public static final NotificationType AVAIL_CHANGE
public static NotificationType[] values()
for (NotificationType c : NotificationType.values()) System.out.println(c);
public static NotificationType 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 © 2014–2017 Red Hat, Inc.. All rights reserved.