org.jmythapi.protocol.response
Enum IRecorderNextProgramInfo.Props

java.lang.Object
  extended by java.lang.Enum<IRecorderNextProgramInfo.Props>
      extended by org.jmythapi.protocol.response.IRecorderNextProgramInfo.Props
All Implemented Interfaces:
Serializable, Comparable<IRecorderNextProgramInfo.Props>
Enclosing interface:
IRecorderNextProgramInfo

public static enum IRecorderNextProgramInfo.Props
extends Enum<IRecorderNextProgramInfo.Props>

The properties of an IRecorderNextProgramInfo response.

MythTV Protocol Version Matrix
 Protocol
NameTypeRange0008-1
TITLEString[00,-1)XXX
SUBTITLEString[00,-1)XXX
DESCRIPTIONString[00,-1)XXX
CATEGORYString[00,-1)XXX
START_DATE_TIMEDate[00,-1)XXX
END_DATE_TIMEDate[00,-1)XXX
CHANNEL_SIGNString[00,-1)XXX
CHANNEL_ICON_PATHString[00,-1)XXX
CHANNEL_NUMBERString[00,-1)XXX
CHANNEL_IDInteger[00,-1)XXX
SERIES_IDString[08,-1)-XX
PROGRAM_IDString[08,-1)-XX


Enum Constant Summary
CATEGORY
          The program category.
CHANNEL_ICON_PATH
          The channel icon path.
CHANNEL_ID
          The channel ID.
CHANNEL_NUMBER
          The channel number.
CHANNEL_SIGN
          The channel abbreviation.
DESCRIPTION
          A description about the program.
END_DATE_TIME
          The scheduled end of the program.
PROGRAM_ID
          Program ID.
SERIES_ID
          Series ID.
START_DATE_TIME
          The scheduled start of the program.
SUBTITLE
          The program subtitle.
TITLE
          The program title.
 
Method Summary
static IRecorderNextProgramInfo.Props valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IRecorderNextProgramInfo.Props[] 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

TITLE

public static final IRecorderNextProgramInfo.Props TITLE
The program title.

See Also:
IRecorderNextProgramInfo.getTitle()

SUBTITLE

public static final IRecorderNextProgramInfo.Props SUBTITLE
The program subtitle.

See Also:
IRecorderNextProgramInfo.getSubtitle()

DESCRIPTION

public static final IRecorderNextProgramInfo.Props DESCRIPTION
A description about the program.

See Also:
IRecorderNextProgramInfo.getDescription()

CATEGORY

public static final IRecorderNextProgramInfo.Props CATEGORY
The program category.

E.g. comedy

See Also:
IRecorderNextProgramInfo.getCategory()

START_DATE_TIME

public static final IRecorderNextProgramInfo.Props START_DATE_TIME
The scheduled start of the program.

See Also:
IRecorderNextProgramInfo.getStartDateTime()

END_DATE_TIME

public static final IRecorderNextProgramInfo.Props END_DATE_TIME
The scheduled end of the program.

See Also:
IRecorderNextProgramInfo.getEndDateTime()

CHANNEL_SIGN

public static final IRecorderNextProgramInfo.Props CHANNEL_SIGN
The channel abbreviation.

E.g. ORF1
This is similar to IRecorderChannelInfo.Props#CHANNEL_SIGN.

See Also:
IRecorderNextProgramInfo.getChannelSign()

CHANNEL_ICON_PATH

public static final IRecorderNextProgramInfo.Props CHANNEL_ICON_PATH
The channel icon path.

See Also:
IRecorderNextProgramInfo.getChannelIconPath()

CHANNEL_NUMBER

public static final IRecorderNextProgramInfo.Props CHANNEL_NUMBER
The channel number.

The user defined number of the channel: e.g. 2
This is similar to IRecorderChannelInfo.Props#CHANNEL_NUMBER.

See Also:
IRecorderNextProgramInfo.getChannelNumber()

CHANNEL_ID

public static final IRecorderNextProgramInfo.Props CHANNEL_ID
The channel ID.

The unique id of the channel: e.g. 1001.
This is similar to IRecorderChannelInfo.Props#CHANNEL_ID.

See Also:
IRecorderNextProgramInfo.getChannelID()

SERIES_ID

public static final IRecorderNextProgramInfo.Props SERIES_ID
Series ID.

Is used for dup checks.

Since:
08

PROGRAM_ID

public static final IRecorderNextProgramInfo.Props PROGRAM_ID
Program ID.

Is used for dup checks.

Since:
08
Method Detail

values

public static IRecorderNextProgramInfo.Props[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (IRecorderNextProgramInfo.Props c : IRecorderNextProgramInfo.Props.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static IRecorderNextProgramInfo.Props valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2008-2013. All Rights Reserved.