org.jmythapi.protocol.response
Enum IInputInfoFree.Props

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

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

The properties of an IInputInfoFree 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


Enum Constant Summary
CARD_ID
          Card 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 IInputInfoFree.Props valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IInputInfoFree.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 IInputInfoFree.Props INPUT_NAME
Input name.

The name of the input.

See Also:
IInputInfo.getInputName()

SOURCE_ID

public static final IInputInfoFree.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()

INPUT_ID

public static final IInputInfoFree.Props INPUT_ID
Input ID.

The ID of a specific input.

See Also:
IInputInfo.getInputID()

CARD_ID

public static final IInputInfoFree.Props CARD_ID
Card ID.

The ID of a physical capture card.

See Also:
IInputInfo.getCardID()

MULTIPLEX_ID

public static final IInputInfoFree.Props MULTIPLEX_ID
Multiplex ID.

See Also:
IInputInfo.getMultiplexID()

LIVETV_ORDER

public static final IInputInfoFree.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
Method Detail

values

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