public static enum IPlayer.PropertyKey extends java.lang.Enum<IPlayer.PropertyKey>
Enum Constant and Description |
---|
CONNECT_INFO
Major URL connect information
Return with JSON object,include sub fileds such as url/ip/eagleID/cdnVia/cdncip/cdnsip.
|
RESPONSE_INFO
Http response info
Return with JSON array,each object item include 'response'/'type' filed。'type' could be url/video/audio/subtitle, depend on the stream whether have the tracks。
For example: [{"response":"response string","type":"url"},{"response":"","type":"video"}]
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static IPlayer.PropertyKey |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IPlayer.PropertyKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IPlayer.PropertyKey RESPONSE_INFO
public static final IPlayer.PropertyKey CONNECT_INFO
public static IPlayer.PropertyKey[] values()
for (IPlayer.PropertyKey c : IPlayer.PropertyKey.values()) System.out.println(c);
public static IPlayer.PropertyKey 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 int getValue()