public static enum Archive.OutputMode extends java.lang.Enum<Archive.OutputMode>
ArchiveProperties.Builder.outputMode(com.opentok.Archive.OutputMode) method
and returned by the Archive.getOutputMode() method.| Enum Constant and Description |
|---|
COMPOSED
All streams in the archive are recorded to a single (composed) file.
|
INDIVIDUAL
Each stream in the archive is recorded to its own individual file.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Archive.OutputMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Archive.OutputMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Archive.OutputMode COMPOSED
public static final Archive.OutputMode INDIVIDUAL
public static Archive.OutputMode[] values()
for (Archive.OutputMode c : Archive.OutputMode.values()) System.out.println(c);
public static Archive.OutputMode 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 java.lang.String toString()
toString in class java.lang.Enum<Archive.OutputMode>