public enum RecordingFeature extends java.lang.Enum<RecordingFeature>
{A7DDC6A5-DAA8-4485-B860-E9F2E98A7794}
Enum Constant and Description |
---|
Audio
Audio recording.
|
None
No feature set.
|
Video
Video recording.
|
Modifier and Type | Method and Description |
---|---|
static RecordingFeature |
fromValue(long v) |
static RecordingFeature |
fromValue(java.lang.String v) |
int |
value() |
static RecordingFeature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecordingFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordingFeature None
public static final RecordingFeature Video
public static final RecordingFeature Audio
public static RecordingFeature[] values()
for (RecordingFeature c : RecordingFeature.values()) System.out.println(c);
public static RecordingFeature 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 nullpublic int value()
public static RecordingFeature fromValue(long v)
public static RecordingFeature fromValue(java.lang.String v)