public enum PlayerErrorType extends Enum<PlayerErrorType>
| Enum Constant and Description |
|---|
MEDIA_ERROR |
PIPELINE_ERROR |
| Modifier and Type | Method and Description |
|---|---|
static PlayerErrorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlayerErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlayerErrorType PIPELINE_ERROR
public static final PlayerErrorType MEDIA_ERROR
public static PlayerErrorType[] values()
for (PlayerErrorType c : PlayerErrorType.values()) System.out.println(c);
public static PlayerErrorType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 Kenan Klisura. All rights reserved.