public enum SMemberType extends java.lang.Enum<SMemberType>
| Enum Constant and Description |
|---|
GROUP |
MEMBERSHIP |
ROLE |
USER |
| Modifier and Type | Method and Description |
|---|---|
static SMemberType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SMemberType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SMemberType USER
public static final SMemberType ROLE
public static final SMemberType GROUP
public static final SMemberType MEMBERSHIP
public static SMemberType[] values()
for (SMemberType c : SMemberType.values()) System.out.println(c);
public static SMemberType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null