Package org.openiam.idm.srvc.user.dto
Enum UserCollection
- java.lang.Object
-
- java.lang.Enum<UserCollection>
-
- org.openiam.idm.srvc.user.dto.UserCollection
-
- All Implemented Interfaces:
Serializable
,Comparable<UserCollection>
public enum UserCollection extends Enum<UserCollection>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDRESS
ALL
ATTRIBUTES
EMAILS
GROUPS
ORGANIZATIONS
PHONES
PRINCIPALS
RELATED_ACCOUNTS
RESOURCES
ROLES
SUBORDINATES
SUPERVISORS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UserCollection[]
asArray(UserCollection... items)
boolean
isAuthorizationRelated()
static UserCollection
valueOf(String name)
Returns the enum constant of this type with the specified name.static UserCollection[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PHONES
public static final UserCollection PHONES
-
EMAILS
public static final UserCollection EMAILS
-
ADDRESS
public static final UserCollection ADDRESS
-
ATTRIBUTES
public static final UserCollection ATTRIBUTES
-
PRINCIPALS
public static final UserCollection PRINCIPALS
-
ROLES
public static final UserCollection ROLES
-
GROUPS
public static final UserCollection GROUPS
-
RESOURCES
public static final UserCollection RESOURCES
-
ORGANIZATIONS
public static final UserCollection ORGANIZATIONS
-
SUPERVISORS
public static final UserCollection SUPERVISORS
-
SUBORDINATES
public static final UserCollection SUBORDINATES
-
RELATED_ACCOUNTS
public static final UserCollection RELATED_ACCOUNTS
-
ALL
public static final UserCollection ALL
-
-
Method Detail
-
values
public static UserCollection[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UserCollection c : UserCollection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UserCollection valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
isAuthorizationRelated
public boolean isAuthorizationRelated()
-
asArray
public static UserCollection[] asArray(UserCollection... items)
-
-