org.jmythapi
Enum IRecorderChannelInfo.Props

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

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

Properties of an IRecorderChannelInfo response.

MythTV Protocol Version Matrix
 Protocol
NameTypeRange28-1
CHANNEL_IDInteger[28,-1)XX
SOURCE_IDInteger[28,-1)XX
CHANNEL_SIGNString[28,-1)XX
CHANNEL_NUMBERString[28,-1)XX
CHANNEL_NAMEString[28,-1)XX
XMLTV_IDString[28,-1)XX


Enum Constant Summary
CHANNEL_ID
          [01] The unique id of the channel (String): e.g. "1000".
CHANNEL_NAME
          [05] The name of the channel (String): e.g.
CHANNEL_NUMBER
          [04] The number of the channel (String): e.g. "2"
CHANNEL_SIGN
          [03] The sign of the channel (String): e.g.
SOURCE_ID
          [02]
XMLTV_ID
          [06]
 
Method Summary
static IRecorderChannelInfo.Props valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IRecorderChannelInfo.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

CHANNEL_ID

public static final IRecorderChannelInfo.Props CHANNEL_ID
[01] The unique id of the channel (String): e.g. "1000".

See Also:
IRecorderChannelInfo.getChannelID()

SOURCE_ID

public static final IRecorderChannelInfo.Props SOURCE_ID
[02]

See Also:
IRecorderChannelInfo.getSourceID()

CHANNEL_SIGN

public static final IRecorderChannelInfo.Props CHANNEL_SIGN
[03] The sign of the channel (String): e.g. "ORF1"

See Also:
IRecorderChannelInfo.getChannelSign()

CHANNEL_NUMBER

public static final IRecorderChannelInfo.Props CHANNEL_NUMBER
[04] The number of the channel (String): e.g. "2"

See Also:
IRecorderChannelInfo.getChannelNumber()

CHANNEL_NAME

public static final IRecorderChannelInfo.Props CHANNEL_NAME
[05] The name of the channel (String): e.g. "ORF 1"

See Also:
IRecorderChannelInfo.getChannelName()

XMLTV_ID

public static final IRecorderChannelInfo.Props XMLTV_ID
[06]

See Also:
IRecorderChannelInfo.getXmlTvID()
Method Detail

values

public static IRecorderChannelInfo.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 (IRecorderChannelInfo.Props c : IRecorderChannelInfo.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 IRecorderChannelInfo.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.