|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<OperationType>
rcf.core.framework.component.OperationType
@Revision(value="$Revision: 1.2 $",
date="$Date: 2006/12/15 20:37:50 $",
tag="$Name: $")
public enum OperationTypeTODO: Javadoc
TODO: Unit tests, Code review, Javadoc review, Seal/Finalize TODO: equals, hashCode, toString
| Enum Constant Summary | |
|---|---|
Compute
The primary object of this operation is to perform some computation, propgating data from various inputs to
outputs. |
|
Read
The primary objective of this operation is to read a property. |
|
ReadWrite
A combination of Read and Write. |
|
Write
The primary objective of this operation is to write a property. |
|
| Method Summary | |
|---|---|
static OperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static OperationType[] |
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 |
|---|
public static final OperationType Read
Get as the operation may in fact do more
than just read a property, in other words it may have side effects of all
kinds. Furthermore unlike Get, the operation may act on a property
which is not of PropertyUse.Option.
public static final OperationType Write
Set as the operation may in fact do more
than just write a property, in other words it may have side effects of all
kinds. Furthermore unlike Set, the operation may act on a property
which is not of PropertyUse.Option.
public static final OperationType ReadWrite
Read and Write.
public static final OperationType Compute
inputs to
outputs. Notice that it may also modify any
inouts.
| Method Detail |
|---|
public static final OperationType[] values()
for(OperationType c : OperationType.values())
System.out.println(c);
public static OperationType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||