com.ibm.pdp.maf.rpp.kernel
Enum RadicalElementType

java.lang.Object
  extended by java.lang.Enum<RadicalElementType>
      extended by com.ibm.pdp.maf.rpp.kernel.RadicalElementType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RadicalElementType>

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

List of radical entities types.


Enum Constant Summary
CODASYL_BLOCKBASE
           
DATA_ELEMENT
           
DATA_STRUCTURE
           
DIALOG
           
DIALOG_SERVER
           
HIERARCHICAL_BLOCKBASE
           
LIBRARY
           
LOGICAL_VIEW
           
MACRO
           
META_ENTITY
           
MONO_STRUCTURE_SEGMENT
           
PROGRAM
           
RELATIONAL_BLOCKBASE
           
REPORT
           
SCREEN
           
SEGMENT
           
SERVER
           
SOCRATE_BLOCKBASE
           
TABLE
           
TEXT
           
USER_ENTITY
           
 
Method Summary
 void Operation1()
           
static RadicalElementType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RadicalElementType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CODASYL_BLOCKBASE

public static final RadicalElementType CODASYL_BLOCKBASE


DATA_ELEMENT

public static final RadicalElementType DATA_ELEMENT


DATA_STRUCTURE

public static final RadicalElementType DATA_STRUCTURE


DIALOG

public static final RadicalElementType DIALOG


DIALOG_SERVER

public static final RadicalElementType DIALOG_SERVER


HIERARCHICAL_BLOCKBASE

public static final RadicalElementType HIERARCHICAL_BLOCKBASE


LIBRARY

public static final RadicalElementType LIBRARY


LOGICAL_VIEW

public static final RadicalElementType LOGICAL_VIEW


MACRO

public static final RadicalElementType MACRO


META_ENTITY

public static final RadicalElementType META_ENTITY


MONO_STRUCTURE_SEGMENT

public static final RadicalElementType MONO_STRUCTURE_SEGMENT


PROGRAM

public static final RadicalElementType PROGRAM


RELATIONAL_BLOCKBASE

public static final RadicalElementType RELATIONAL_BLOCKBASE


REPORT

public static final RadicalElementType REPORT


SCREEN

public static final RadicalElementType SCREEN


SEGMENT

public static final RadicalElementType SEGMENT


SERVER

public static final RadicalElementType SERVER


SOCRATE_BLOCKBASE

public static final RadicalElementType SOCRATE_BLOCKBASE


TABLE

public static final RadicalElementType TABLE


TEXT

public static final RadicalElementType TEXT


USER_ENTITY

public static final RadicalElementType USER_ENTITY

Method Detail

Operation1

public void Operation1()


valueOf

public static RadicalElementType 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
java.lang.NullPointerException - if the argument is null

values

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

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