public enum EnumComponentType extends java.lang.Enum<EnumComponentType>
Enum Constant and Description |
---|
EnumComponentType_AS
Share application.
|
EnumComponentType_AUDIO
Audio.
|
EnumComponentType_Chat
Chat.
|
EnumComponentType_Def
Custom component.
|
EnumComponentType_FT
File transfer.
|
EnumComponentType_VIDEO
Video.
|
Modifier and Type | Method and Description |
---|---|
static EnumComponentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumComponentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumComponentType EnumComponentType_Def
public static final EnumComponentType EnumComponentType_Chat
public static final EnumComponentType EnumComponentType_FT
public static final EnumComponentType EnumComponentType_AUDIO
public static final EnumComponentType EnumComponentType_VIDEO
public static final EnumComponentType EnumComponentType_AS
public static EnumComponentType[] values()
for (EnumComponentType c : EnumComponentType.values()) System.out.println(c);
public static EnumComponentType 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