public enum FeatureKeyScope extends Enum<FeatureKeyScope>
Enum Constant and Description |
---|
ALL_USERS
Aka site wide feature, can be disabled during runtime.
|
ALL_USERS_READ_ONLY
Aka system feature, cannot be disabled during runtime.
|
CURRENT_USER_ONLY
The feature is enabled for the current user only.
|
Modifier and Type | Method and Description |
---|---|
static FeatureKeyScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FeatureKeyScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeatureKeyScope ALL_USERS_READ_ONLY
public static final FeatureKeyScope ALL_USERS
public static final FeatureKeyScope CURRENT_USER_ONLY
public static FeatureKeyScope[] values()
for (FeatureKeyScope c : FeatureKeyScope.values()) System.out.println(c);
public static FeatureKeyScope valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2015 Atlassian. All rights reserved.