public static enum Feature.Value extends java.lang.Enum<Feature.Value>
Enum Constant and Description |
---|
AUDIO |
CHAT |
FEED |
MODERATOR |
PHONE |
SCREEN |
VIDEO |
Modifier and Type | Method and Description |
---|---|
static Feature.Value |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Feature.Value[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Feature.Value AUDIO
public static final Feature.Value CHAT
public static final Feature.Value FEED
public static final Feature.Value MODERATOR
public static final Feature.Value PHONE
public static final Feature.Value SCREEN
public static final Feature.Value VIDEO
public static Feature.Value[] values()
for (Feature.Value c : Feature.Value.values()) System.out.println(c);
public static Feature.Value 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