org.picketlink.idm.model.annotation
public static enum IdentityStereotype.Stereotype extends Enum<IdentityStereotype.Stereotype>
Enum Constant and Description |
---|
GROUP
Should be used by
IdentityType types that represent a group. |
ROLE
Should be used by
IdentityType types that represent a role. |
UNDEFINED |
USER
Should be used by
IdentityType types that represent an user. |
Modifier and Type | Method and Description |
---|---|
static IdentityStereotype.Stereotype |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IdentityStereotype.Stereotype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdentityStereotype.Stereotype UNDEFINED
public static final IdentityStereotype.Stereotype USER
Should be used by IdentityType
types that represent an user.
public static final IdentityStereotype.Stereotype ROLE
Should be used by IdentityType
types that represent a role.
public static final IdentityStereotype.Stereotype GROUP
Should be used by IdentityType
types that represent a group.
public static IdentityStereotype.Stereotype[] values()
for (IdentityStereotype.Stereotype c : IdentityStereotype.Stereotype.values()) System.out.println(c);
public static IdentityStereotype.Stereotype 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 © 2015 JBoss by Red Hat. All rights reserved.