public enum UserChannelAccess extends java.lang.Enum<UserChannelAccess>
| Enum Constant and Description |
|---|
DEFAULT_DISABLED
New users cannot access the channel by default, but can enable the access
|
DEFAULT_ENABLED
New users can access the channel by default, but can disable the access
|
ENFORCED_ENABLED
Users in this configuration always access the channel
|
| Modifier and Type | Method and Description |
|---|---|
static UserChannelAccess |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserChannelAccess[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserChannelAccess DEFAULT_ENABLED
public static final UserChannelAccess DEFAULT_DISABLED
public static final UserChannelAccess ENFORCED_ENABLED
public static UserChannelAccess[] values()
for (UserChannelAccess c : UserChannelAccess.values()) System.out.println(c);
public static UserChannelAccess 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