public static enum IBuffer.Status extends Enum<IBuffer.Status>
IBuffer. Depending on the status different operations
can be performed on the IBuffer| Enum Constant and Description |
|---|
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
|
| Modifier and Type | Method and Description |
|---|---|
static IBuffer.Status |
valueOf(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.
|
public static final IBuffer.Status Init
public static final IBuffer.Status Open
public static final IBuffer.Status Close
public static final IBuffer.Status Dispose
public static IBuffer.Status[] values()
for (IBuffer.Status c : IBuffer.Status.values()) System.out.println(c);
public static IBuffer.Status valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2014. All Rights Reserved.