public enum GlobalPermissionType extends java.lang.Enum<GlobalPermissionType>
| Enum Constant and Description |
|---|
CAN_ADD_REPOSITORY
Permission to add a new repository to FishEye
|
CRUCIBLE_USER
Permission to use Crucible functionality
|
FISHEYE_USER
Permission to use FishEye functionality
|
| Modifier and Type | Field and Description |
|---|---|
static java.util.Set<GlobalPermissionType> |
FISHEYE_AND_CRUCIBLE |
| Modifier and Type | Method and Description |
|---|---|
static GlobalPermissionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GlobalPermissionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlobalPermissionType FISHEYE_USER
public static final GlobalPermissionType CRUCIBLE_USER
public static final GlobalPermissionType CAN_ADD_REPOSITORY
public static final java.util.Set<GlobalPermissionType> FISHEYE_AND_CRUCIBLE
public static GlobalPermissionType[] values()
for (GlobalPermissionType c : GlobalPermissionType.values()) System.out.println(c);
public static GlobalPermissionType 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