Project: stp

com.ibm.rational.wvcm.stp.cq
Enum CqRecord.Class

Object
  extended by Enum<CqRecord.Class>
      extended by CqRecord.Class
All Implemented Interfaces:
com.ibm.rational.wvcm.stpex.StpExEnumeration, Serializable, Comparable<CqRecord.Class>
Enclosing interface:
CqRecord

public static enum CqRecord.Class
extends Enum<CqRecord.Class>
implements com.ibm.rational.wvcm.stpex.StpExEnumeration

An enumeration of the possible types of records; state-based or stateless.


Enum Constant Summary
STATE_BASED
          A record type whose records progress from state to state along prescribed paths based on the actions applied to them.
STATELESS
          A record type having no state table.
 
Method Summary
static CqRecord.Class valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CqRecord.Class[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

STATE_BASED

public static final CqRecord.Class STATE_BASED
A record type whose records progress from state to state along prescribed paths based on the actions applied to them.


STATELESS

public static final CqRecord.Class STATELESS
A record type having no state table.

Method Detail

valueOf

public static CqRecord.Class 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

values

public static CqRecord.Class[] 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 (CqRecord.Class c : CqRecord.Class.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

Generated Fri 15-Nov-2013 02:34 AM

Copyright © IBM 2013. All rights reserved.