public enum PersonAttribute extends Enum<PersonAttribute>
PersonManagementService
.Enum Constant and Description |
---|
DETAILS
The attribute which holds person details.
|
EMAIL
The attribute representing 'Email Address'
|
FIRST_NAME
The attribute representing 'First Name'.
|
LAST_NAME
The attribute representing 'Last Name'
|
LOGIN
The attribute representing 'Login Name'.
|
MODELED_ROLES
The attribute which holds a collection of assigned modeled roles.
|
PASSWORD
The attribute representing 'Password'.
|
PHONE
The attribute representing 'Phone Number'.
|
SECURITY_ROLES
The attribute which holds a collection of assigned security roles.
|
STATE
Active / Inactive state of a person.
|
SUBSTITUTES
The attribute which holds a collection of assigned substitutes.
|
SUBSTITUTION_ACTIVE
The attribute which holds a flag indicating active or inactive
substitution.
|
Modifier and Type | Method and Description |
---|---|
static PersonAttribute |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PersonAttribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PersonAttribute LOGIN
public static final PersonAttribute PASSWORD
public static final PersonAttribute STATE
public static final PersonAttribute FIRST_NAME
public static final PersonAttribute LAST_NAME
public static final PersonAttribute EMAIL
public static final PersonAttribute PHONE
public static final PersonAttribute SUBSTITUTION_ACTIVE
public static final PersonAttribute SUBSTITUTES
public static final PersonAttribute SECURITY_ROLES
public static final PersonAttribute MODELED_ROLES
public static final PersonAttribute DETAILS
public static PersonAttribute[] values()
for (PersonAttribute c : PersonAttribute.values()) System.out.println(c);
public static PersonAttribute 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 © 2007-2020 Whitestein Technologies. All Rights Reserved.