public enum ActiveDirectoryUserType extends Enum<ActiveDirectoryUserType>
Enum Constant and Description |
---|
COMPUTER
Computer
|
CONTACT
Contact
|
TYPICAL_USER
Typical user
|
UNKNOWN_USER_TYPE
Unknown user
|
Modifier and Type | Method and Description |
---|---|
static ActiveDirectoryUserType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActiveDirectoryUserType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActiveDirectoryUserType TYPICAL_USER
public static final ActiveDirectoryUserType CONTACT
public static final ActiveDirectoryUserType COMPUTER
public static final ActiveDirectoryUserType UNKNOWN_USER_TYPE
public static ActiveDirectoryUserType[] values()
for (ActiveDirectoryUserType c : ActiveDirectoryUserType.values()) System.out.println(c);
public static ActiveDirectoryUserType 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.