IBM WebSphere Extended Deployment (XD)TM, Release 6.1
ObjectGrid API Specification

com.ibm.websphere.objectgrid.streamquery.annotations
Enum AccessTypeEnum

java.lang.Object
  extended by java.lang.Enum<AccessTypeEnum>
      extended by com.ibm.websphere.objectgrid.streamquery.annotations.AccessTypeEnum
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AccessTypeEnum>

public enum AccessTypeEnum
extends java.lang.Enum<AccessTypeEnum>

Overrides or explicitly defines the method in which the persistence layer accesses the stream query entity's persistent state.

Since:
WAS XD 6.1

Enum Constant Summary
FIELD
          The attributes of the stream or view class is accessed using fields.
PROPERTY
          The attributes of the stream or view class is accessed using methods.
UNDEFINED
          Undefined access type
 
Method Summary
static AccessTypeEnum valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccessTypeEnum[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FIELD

public static final AccessTypeEnum FIELD
The attributes of the stream or view class is accessed using fields.


PROPERTY

public static final AccessTypeEnum PROPERTY
The attributes of the stream or view class is accessed using methods.


UNDEFINED

public static final AccessTypeEnum UNDEFINED
Undefined access type

Method Detail

values

public static final AccessTypeEnum[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(AccessTypeEnum c : AccessTypeEnum.values())
        System.out.println(c);

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

valueOf

public static AccessTypeEnum valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

IBM WebSphere Extended Deployment (XD)TM, Release 6.1
ObjectGrid API Specification

© Copyright International Business Machines Corp 2005-2007. All rights reserved.