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