public static enum Archive.Status extends java.lang.Enum<Archive.Status>
Archive.getStatus() method.| Enum Constant and Description |
|---|
AVAILABLE
The archive file is available for download from the OpenTok cloud.
|
DELETED
The archive file has been deleted.
|
EXPIRED
The archive file is no longer available at the OpenTok cloud.
|
FAILED
The recording of the archive failed.
|
STARTED
The archive recording has started and is in progress.
|
STOPPED
The archive recording has stopped, but the file is not available.
|
UPLOADED
The archive file is available at the target Amazon S3 bucket
or Windows Azure container you set at the
OpenTok dashboard.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Archive.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Archive.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Archive.Status AVAILABLE
Archive.getUrl() method.public static final Archive.Status DELETED
public static final Archive.Status FAILED
public static final Archive.Status STARTED
public static final Archive.Status STOPPED
public static final Archive.Status UPLOADED
public static final Archive.Status EXPIRED
public static Archive.Status[] values()
for (Archive.Status c : Archive.Status.values()) System.out.println(c);
public static Archive.Status 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.Status>