public static enum RelationshipStereotype.Stereotype extends Enum<RelationshipStereotype.Stereotype>
| Enum Constant and Description |
|---|
GRANT
Should be used by
Relationship types that represent an association between a
IdentityType and a role type. |
GROUP_MEMBERSHIP
Should be used by
Relationship types that represent an association between a
IdentityType and a group type. |
| Modifier and Type | Method and Description |
|---|---|
static RelationshipStereotype.Stereotype |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelationshipStereotype.Stereotype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelationshipStereotype.Stereotype GRANT
Should be used by Relationship types that represent an association between a
IdentityType and a role type.
public static final RelationshipStereotype.Stereotype GROUP_MEMBERSHIP
Should be used by Relationship types that represent an association between a
IdentityType and a group type. Usually, the associated identity type is an user that is member
of a group.
public static RelationshipStereotype.Stereotype[] values()
for (RelationshipStereotype.Stereotype c : RelationshipStereotype.Stereotype.values()) System.out.println(c);
public static RelationshipStereotype.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 © 2021. All rights reserved.