public static enum GroupOperation.Type extends Enum<GroupOperation.Type>
| Enum Constant and Description | 
|---|
ADD
Create a group in a device with the specified parameters. 
 | 
DELETE
Delete a specified group. 
 | 
MODIFY
Modify a group in a device with the specified parameters. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static GroupOperation.Type | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static GroupOperation.Type[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final GroupOperation.Type ADD
public static final GroupOperation.Type MODIFY
public static final GroupOperation.Type DELETE
public static GroupOperation.Type[] values()
for (GroupOperation.Type c : GroupOperation.Type.values()) System.out.println(c);
public static GroupOperation.Type 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 null