public enum RecordingDestination extends java.lang.Enum<RecordingDestination>
Enum Constant and Description |
---|
File
Destination is a regular file.
|
None
No destination.
|
Modifier and Type | Method and Description |
---|---|
static RecordingDestination |
fromValue(long v) |
static RecordingDestination |
fromValue(java.lang.String v) |
int |
value() |
static RecordingDestination |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecordingDestination[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordingDestination None
public static final RecordingDestination File
public static RecordingDestination[] values()
for (RecordingDestination c : RecordingDestination.values()) System.out.println(c);
public static RecordingDestination 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 RecordingDestination fromValue(long v)
public static RecordingDestination fromValue(java.lang.String v)