org.jmythapi.protocol.response
Enum IInputInfoTuned.Props

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

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

The properties of an IInputInfoTuned response.

MythTV Protocol Version Matrix
 Protocol
NameTypeRange3771-1
INPUT_NAMEString[37,-1)XXX
SOURCE_IDInteger[37,-1)XXX
INPUT_IDInteger[37,-1)XXX
CARD_IDInteger[37,-1)XXX
MULTIPLEX_IDInteger[37,-1)XXX
LIVETV_ORDERInteger[71,-1)-XX
CHANNEL_IDInteger[37,-1)XXX


Enum Constant Summary
CARD_ID
          Card ID.
CHANNEL_ID
          Channel ID.
INPUT_ID
          Input ID.
INPUT_NAME
          Input name.
LIVETV_ORDER
          Live TV order.
MULTIPLEX_ID
          Multiplex ID.
SOURCE_ID
          Source ID.
 
Method Summary
static IInputInfoTuned.Props valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IInputInfoTuned.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

INPUT_NAME

public static final IInputInfoTuned.Props INPUT_NAME
Input name.

The name of the input.

See Also:
IInputInfo.getInputName()

SOURCE_ID

public static final IInputInfoTuned.Props SOURCE_ID
Source ID.

The ID of the program source. This is usually the first digit of the channel ID.

See Also:
IInputInfo.getSourceID(), IInputInfo.getSourceID()

INPUT_ID

public static final IInputInfoTuned.Props INPUT_ID
Input ID.

The ID of a specific input.

See Also:
IInputInfo.getInputID(), IInputInfo.getInputID()

CARD_ID

public static final IInputInfoTuned.Props CARD_ID
Card ID.

The ID of a physical capture card.

See Also:
IInputInfo.getCardID(), IInputInfo.getCardID()

MULTIPLEX_ID

public static final IInputInfoTuned.Props MULTIPLEX_ID
Multiplex ID.

See Also:
IInputInfo.getMultiplexID()

LIVETV_ORDER

public static final IInputInfoTuned.Props LIVETV_ORDER
Live TV order.

When entering Live TV, the available, local input with the lowest, non-zero value will be used. If no local inputs are available, the available, remote input with the lowest, non-zero value will be used. Setting this value to zero will make the input unavailable to live TV.

Since:
71

CHANNEL_ID

public static final IInputInfoTuned.Props CHANNEL_ID
Channel ID.

Id of the currently tuned channel

See Also:
IInputInfoTuned.getChannelID()
Method Detail

values

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