|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Vote>
com.atlassian.gadgets.spi.Vote
public enum Vote
Votes are used in the gadget system to determine whether a user is allowed to perform certain actions, such
as seeing a gadget in the gadget browser or being allowed to render a gadget on their dashboard.
| Enum Constant Summary | |
|---|---|
ALLOW
The user is allowed to perform the requested action. |
|
DENY
The user is forbidden to perform the requested action. |
|
PASS
The implementation has no opinion on whether the user may perform the requested action. |
|
| Method Summary | |
|---|---|
static Vote |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Vote[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Vote ALLOW
public static final Vote DENY
public static final Vote PASS
| Method Detail |
|---|
public static Vote[] values()
for (Vote c : Vote.values()) System.out.println(c);
public static Vote valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||