public static enum NotificationService.BranchesToBeNotified extends java.lang.Enum<NotificationService.BranchesToBeNotified>
Enum Constant and Description |
---|
ALL |
DEFAULT |
DEFAULT_AND_PROTECTED |
PROTECTED |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static NotificationService.BranchesToBeNotified |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NotificationService.BranchesToBeNotified[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationService.BranchesToBeNotified ALL
public static final NotificationService.BranchesToBeNotified DEFAULT
public static final NotificationService.BranchesToBeNotified PROTECTED
public static final NotificationService.BranchesToBeNotified DEFAULT_AND_PROTECTED
public static NotificationService.BranchesToBeNotified[] values()
for (NotificationService.BranchesToBeNotified c : NotificationService.BranchesToBeNotified.values()) System.out.println(c);
public static NotificationService.BranchesToBeNotified valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<NotificationService.BranchesToBeNotified>