public enum ActiveDirectoryGroupOrder extends Enum<ActiveDirectoryGroupOrder>
Enum Constant and Description |
---|
GROUP_NAME
Order by group name
|
UPDATE_DATE
Order by group update date
|
Modifier and Type | Method and Description |
---|---|
static ActiveDirectoryGroupOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActiveDirectoryGroupOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActiveDirectoryGroupOrder GROUP_NAME
public static final ActiveDirectoryGroupOrder UPDATE_DATE
public static ActiveDirectoryGroupOrder[] values()
for (ActiveDirectoryGroupOrder c : ActiveDirectoryGroupOrder.values()) System.out.println(c);
public static ActiveDirectoryGroupOrder 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.