org.jmythapi.protocol.events
Enum IPixmapGenerated.Props

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

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


Enum Constant Summary
PIXMAP_CHECKSUM
          Pixmap checksum.
PIXMAP_DATA_BASE64
          Pixmap base64 encoded data.
PIXMAP_DATA_SIZE
          Pixmap data size.
PIXMAP_LAST_MODIFIED
          Pixmap last modified timestamp.
STATUS_CODE
          The status code.
STATUS_MESSAGE
          A message text.
TOKEN
          The token that was specified during pixmap generation.
UNIQUE_RECORDING_ID
          The unique recording id.
 
Method Summary
static IPixmapGenerated.Props valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IPixmapGenerated.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

STATUS_CODE

public static final IPixmapGenerated.Props STATUS_CODE
The status code.

See Also:
IPixmapGenerated.getStatusCode()

UNIQUE_RECORDING_ID

public static final IPixmapGenerated.Props UNIQUE_RECORDING_ID
The unique recording id.

See Also:
IPixmapGenerated.getUniqueRecordingID(), IPixmapGenerated.getChannelID(), IPixmapGenerated.getRecordingStartTime()

STATUS_MESSAGE

public static final IPixmapGenerated.Props STATUS_MESSAGE
A message text.

See Also:
IPixmapGenerated.getStatusMessage()

PIXMAP_LAST_MODIFIED

public static final IPixmapGenerated.Props PIXMAP_LAST_MODIFIED
Pixmap last modified timestamp.

This is null on ERROR.

See Also:
IPixmapGenerated.getPixmap(), IPixmap.Props#LAST_MODIFIED

PIXMAP_DATA_SIZE

public static final IPixmapGenerated.Props PIXMAP_DATA_SIZE
Pixmap data size.

This is null on ERROR.

See Also:
IPixmapGenerated.getPixmap(), IPixmap.Props#DATA_SIZE

PIXMAP_CHECKSUM

public static final IPixmapGenerated.Props PIXMAP_CHECKSUM
Pixmap checksum.

This is null on ERROR.

See Also:
IPixmapGenerated.getPixmap(), IPixmap.Props#DATA_CHECKSUM

PIXMAP_DATA_BASE64

public static final IPixmapGenerated.Props PIXMAP_DATA_BASE64
Pixmap base64 encoded data.

This is null on ERROR.

See Also:
IPixmapGenerated.getPixmap(), IPixmap.Props#DATA_BASE64

TOKEN

public static final IPixmapGenerated.Props TOKEN
The token that was specified during pixmap generation.

See Also:
IPixmapGenerated.getToken()
Method Detail

values

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