public enum PublishToRepositoryAccessRight extends java.lang.Enum<PublishToRepositoryAccessRight>
| Enum Constant and Description |
|---|
allMembersOrViewers
Registered users of your organization.
|
everyone
Everyone
|
projectMembersOnly
Participants of this project.
|
| Modifier and Type | Method and Description |
|---|---|
static PublishToRepositoryAccessRight |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PublishToRepositoryAccessRight[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PublishToRepositoryAccessRight projectMembersOnly
public static final PublishToRepositoryAccessRight allMembersOrViewers
public static final PublishToRepositoryAccessRight everyone
public static PublishToRepositoryAccessRight[] values()
for (PublishToRepositoryAccessRight c : PublishToRepositoryAccessRight.values()) System.out.println(c);
public static PublishToRepositoryAccessRight 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