org.jmythapi.protocol.response
Enum ITunerInfo.Props

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

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

Properties of the ITunerInfo response.

MythTV Protocol Version Matrix
 Protocol
NameTypeRange00-1
CARD_IDInteger[00,-1)XX
VIDEO_DEVICEString[00,-1)XX
AUDIO_DEVICEString[00,-1)XX
VBI_DEVICEString[00,-1)XX


Enum Constant Summary
AUDIO_DEVICE
          Audio Device.
CARD_ID
          Card ID.
VBI_DEVICE
          VBI Device.
VIDEO_DEVICE
          Video Device.
 
Method Summary
static ITunerInfo.Props valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ITunerInfo.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

CARD_ID

public static final ITunerInfo.Props CARD_ID
Card ID.

The card ID of the tuner.

See Also:
ITunerInfo.getCardID()

VIDEO_DEVICE

public static final ITunerInfo.Props VIDEO_DEVICE
Video Device.

See Also:
ITunerInfo.getVideoDevice()

AUDIO_DEVICE

public static final ITunerInfo.Props AUDIO_DEVICE
Audio Device.

See Also:
ITunerInfo.getAudioDevice()

VBI_DEVICE

public static final ITunerInfo.Props VBI_DEVICE
VBI Device.

See Also:
ITunerInfo.getVbiDevice()
Method Detail

values

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