public enum ADUserAttributes extends Enum<ADUserAttributes>
Enum Constant and Description |
---|
department |
givenname |
mail |
memberof |
objectguid |
sn |
title |
userprincipalname |
Modifier and Type | Method and Description |
---|---|
static ADUserAttributes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ADUserAttributes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ADUserAttributes objectguid
public static final ADUserAttributes userprincipalname
public static final ADUserAttributes givenname
public static final ADUserAttributes department
public static final ADUserAttributes title
public static final ADUserAttributes mail
public static final ADUserAttributes memberof
public static final ADUserAttributes sn
public static ADUserAttributes[] values()
for (ADUserAttributes c : ADUserAttributes.values()) System.out.println(c);
public static ADUserAttributes 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 © 2012. All Rights Reserved.