|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<SignupMode>
com.atlassian.confluence.plugins.easyuser.SignupMode
public enum SignupMode
Represents ways in which users may sign themselves up for a Confluence User account.
| Enum Constant Summary | |
|---|---|
DISABLED
Users may NOT sign themselves up to Confluence - they must be added by an administrator. |
|
PRIVATE
User may sign themselves up if they have a secure token. |
|
PUBLIC
Users may sign themselves up. |
|
| Method Summary | |
|---|---|
String |
getValue()
Returns a lower-case name for this enum value. |
static SignupMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SignupMode[] |
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 SignupMode PUBLIC
public static final SignupMode PRIVATE
public static final SignupMode DISABLED
| Method Detail |
|---|
public static SignupMode[] values()
for (SignupMode c : SignupMode.values()) System.out.println(c);
public static SignupMode 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 nullpublic String getValue()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||