org.jmythapi.protocol.response
Enum IPixmap.Props

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

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

The properties of an IPixmap response.

MythTV Protocol Version Matrix
 Protocol
NameTypeRange49-1
LAST_MODIFIEDDate[49,-1)XX
DATA_SIZELong[49,-1)XX
DATA_CHECKSUMString[49,-1)XX
DATA_BASE64String[49,-1)XX
.


Enum Constant Summary
DATA_BASE64
          Pixmap data as base64 encoded string.
DATA_CHECKSUM
          Checksum of the pixmap file.
DATA_SIZE
          Size of pixmap in bytes.
LAST_MODIFIED
          Last modified timestamp.
 
Method Summary
static IPixmap.Props valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IPixmap.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

LAST_MODIFIED

public static final IPixmap.Props LAST_MODIFIED
Last modified timestamp.


DATA_SIZE

public static final IPixmap.Props DATA_SIZE
Size of pixmap in bytes.


DATA_CHECKSUM

public static final IPixmap.Props DATA_CHECKSUM
Checksum of the pixmap file.


DATA_BASE64

public static final IPixmap.Props DATA_BASE64
Pixmap data as base64 encoded string.

Method Detail

values

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