public enum PrincipalType extends java.lang.Enum<PrincipalType>
| Enum Constant and Description |
|---|
ALL |
DISTRIBUTION_LIST |
NONE |
SECURITY_GROUP |
SHARE_POINT_GROUP |
USER |
| Modifier and Type | Method and Description |
|---|---|
static PrincipalType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrincipalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrincipalType ALL
public static final PrincipalType DISTRIBUTION_LIST
public static final PrincipalType NONE
public static final PrincipalType SECURITY_GROUP
public static final PrincipalType SHARE_POINT_GROUP
public static final PrincipalType USER
public static PrincipalType 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 nullpublic static PrincipalType[] values()
for (PrincipalType c : PrincipalType.values()) System.out.println(c);