|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<IBuffer.Status>
gr.uoa.di.madgik.grs.buffer.IBuffer.Status
public static enum IBuffer.Status
The current status of the IBuffer. Depending on the status different operations
can be performed on the IBuffer
| Enum Constant Summary | |
|---|---|
Close
The buffer is closed for authoring but open for reading |
|
Dispose
The buffer is in dispose and cannot be used for any operation |
|
Init
The buffer has not yet been initialized and configuration parameters can be modified. |
|
Open
The buffer is open for editing and consumption |
|
| Method Summary | |
|---|---|
static IBuffer.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static IBuffer.Status[] |
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 |
|---|
public static final IBuffer.Status Init
public static final IBuffer.Status Open
public static final IBuffer.Status Close
public static final IBuffer.Status Dispose
| Method Detail |
|---|
public static IBuffer.Status[] values()
for (IBuffer.Status c : IBuffer.Status.values()) System.out.println(c);
public static IBuffer.Status valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||