org.jmythapi.protocol.response
Enum IRecordingStatus.Props

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

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

The properties of IRecordingStatus.

MythTV Protocol Version Matrix
 Protocol
NameTypeRange0040-1
RECORDING_IN_PROGRESSInteger[00,-1)XXX
LIVETV_IN_PROGRESSInteger[40,-1)-XX


Enum Constant Summary
LIVETV_IN_PROGRESS
          LiveTV in progress.
RECORDING_IN_PROGRESS
          Recordings in progress.
 
Method Summary
static IRecordingStatus.Props valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IRecordingStatus.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

RECORDING_IN_PROGRESS

public static final IRecordingStatus.Props RECORDING_IN_PROGRESS
Recordings in progress.

The total amount of active recordings

See Also:
IRecordingStatus.getActiveRecordings()

LIVETV_IN_PROGRESS

public static final IRecordingStatus.Props LIVETV_IN_PROGRESS
LiveTV in progress.

Active recordings that are LiveTV recordings.

Since:
40
See Also:
IRecordingStatus.getLiveTVRecordings()
Method Detail

values

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