public enum RenderStatus extends java.lang.Enum<RenderStatus>
Render.| Enum Constant and Description |
|---|
FAILED
An error occurred and the Experience Composer could not proceed.
|
STARTED
The Vonage Video API platform has successfully connected to the remote application server, and is
publishing the web view to an OpenTok stream.
|
STARTING
The Vonage Video API platform is in the process of connecting to the remote application at the URL provided.
|
STOPPED
The Experience Composer has stopped.
|
| Modifier and Type | Method and Description |
|---|---|
static RenderStatus |
fromString(java.lang.String status) |
java.lang.String |
toString() |
static RenderStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RenderStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderStatus STARTING
public static final RenderStatus STARTED
public static final RenderStatus STOPPED
public static final RenderStatus FAILED
public static RenderStatus[] values()
for (RenderStatus c : RenderStatus.values()) System.out.println(c);
public static RenderStatus 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 static RenderStatus fromString(java.lang.String status)
public java.lang.String toString()
toString in class java.lang.Enum<RenderStatus>