public static enum Attribute.TYPE extends Enum<Attribute.TYPE>
Enum Constant and Description |
---|
COUNTRY |
EMAIL_ADDRESS |
EMPLOYEE_NUMBER |
EMPLOYEE_TYPE |
GIVEN_NAME |
PO_BOX |
POSTAL_ADDRESS |
POSTAL_CODE |
PREFERRED_LANGUAGE |
STREET |
SURNAME |
TELEPHONE |
TITLE |
Modifier and Type | Method and Description |
---|---|
String |
get() |
static Attribute.TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Attribute.TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Attribute.TYPE COUNTRY
public static final Attribute.TYPE EMAIL_ADDRESS
public static final Attribute.TYPE EMPLOYEE_TYPE
public static final Attribute.TYPE EMPLOYEE_NUMBER
public static final Attribute.TYPE GIVEN_NAME
public static final Attribute.TYPE PREFERRED_LANGUAGE
public static final Attribute.TYPE PO_BOX
public static final Attribute.TYPE POSTAL_CODE
public static final Attribute.TYPE POSTAL_ADDRESS
public static final Attribute.TYPE SURNAME
public static final Attribute.TYPE STREET
public static final Attribute.TYPE TITLE
public static final Attribute.TYPE TELEPHONE
public static Attribute.TYPE[] values()
for (Attribute.TYPE c : Attribute.TYPE.values()) System.out.println(c);
public static Attribute.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 nullpublic String get()
Copyright © 2021 JBoss by Red Hat. All rights reserved.