public static enum InneractiveVideoError.Error extends java.lang.Enum<InneractiveVideoError.Error>
| Enum Constant and Description |
|---|
ERROR_BUFFER_TIMEOUT
Sent when there is a buffer timeout in the middle of playing (media already started)
|
ERROR_FAILED_PLAYING_ALL_MEDIA_FILES
Sent when the player fails playing all media files
|
ERROR_FAILED_PLAYING_MEDIA_FILE
Sent when the player fails playing a media file
|
ERROR_NO_MEDIA_FILES
Sent when no media files are available within the VAST response
|
ERROR_PRE_BUFFER_TIMEOUT
Sent when there is a buffer timeout when trying to load a video into the player
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getErrorString()
Getter for error string key
|
boolean |
isFatal()
Is this error a fatal error?
|
static InneractiveVideoError.Error |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InneractiveVideoError.Error[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InneractiveVideoError.Error ERROR_NO_MEDIA_FILES
public static final InneractiveVideoError.Error ERROR_FAILED_PLAYING_MEDIA_FILE
public static final InneractiveVideoError.Error ERROR_FAILED_PLAYING_ALL_MEDIA_FILES
public static final InneractiveVideoError.Error ERROR_PRE_BUFFER_TIMEOUT
public static final InneractiveVideoError.Error ERROR_BUFFER_TIMEOUT
public static InneractiveVideoError.Error[] values()
for (InneractiveVideoError.Error c : InneractiveVideoError.Error.values()) System.out.println(c);
public static InneractiveVideoError.Error 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 getErrorString()
public boolean isFatal()