public enum ActiveDirectoryGroupActionType extends Enum<ActiveDirectoryGroupActionType>
Enum Constant and Description |
---|
CREATE_GROUP
Create group
|
DELETE_GROUP
Delete group
|
Modifier and Type | Method and Description |
---|---|
static ActiveDirectoryGroupActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActiveDirectoryGroupActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActiveDirectoryGroupActionType CREATE_GROUP
public static final ActiveDirectoryGroupActionType DELETE_GROUP
public static ActiveDirectoryGroupActionType[] values()
for (ActiveDirectoryGroupActionType c : ActiveDirectoryGroupActionType.values()) System.out.println(c);
public static ActiveDirectoryGroupActionType 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 © 2019. All rights reserved.