|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<EChannelBrowseDirection> org.jmythapi.protocol.request.EChannelBrowseDirection
public enum EChannelBrowseDirection
Specifies the direction used for channel browsing.
Recorder.getNextProgramInfo(String, Integer, EChannelBrowseDirection, Date)
,
tv.hEnum Constant Summary | |
---|---|
DOWN
Next channel. |
|
FAVORITE
Next favorite channel. |
|
LEFT
Same channel in the past. |
|
RIGHT
Same channel in the future. |
|
SAME
Same channel and time. |
|
UP
Previous channel. |
Method Summary | |
---|---|
static EChannelBrowseDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EChannelBrowseDirection[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final EChannelBrowseDirection SAME
Fetch browse information on current channel and time.
public static final EChannelBrowseDirection UP
Fetch information on previous channel.
public static final EChannelBrowseDirection DOWN
Fetch information on next channel.
public static final EChannelBrowseDirection LEFT
Fetch information on current channel in the past.
public static final EChannelBrowseDirection RIGHT
Fetch information on current channel in the future.
public static final EChannelBrowseDirection FAVORITE
Fetch information on the next favorite channel.
Method Detail |
---|
public static EChannelBrowseDirection[] values()
for (EChannelBrowseDirection c : EChannelBrowseDirection.values()) System.out.println(c);
public static EChannelBrowseDirection valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |