public static enum MeetingItem.AutoRecordType extends java.lang.Enum<MeetingItem.AutoRecordType>
| Enum Constant and Description |
|---|
AutoRecordType_CloudRecord
Record meeting on loud.
|
AutoRecordType_Disabled
It is disabled to record automatically in the meeting.
|
AutoRecordType_LocalRecord
Record meeting on local device.
|
| Modifier and Type | Method and Description |
|---|---|
static MeetingItem.AutoRecordType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MeetingItem.AutoRecordType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeetingItem.AutoRecordType AutoRecordType_Disabled
public static final MeetingItem.AutoRecordType AutoRecordType_LocalRecord
public static final MeetingItem.AutoRecordType AutoRecordType_CloudRecord
public static MeetingItem.AutoRecordType[] values()
for (MeetingItem.AutoRecordType c : MeetingItem.AutoRecordType.values()) System.out.println(c);
public static MeetingItem.AutoRecordType 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