public static enum CompositeBuffer.DisposeOrder extends Enum<CompositeBuffer.DisposeOrder>
Buffers will be disposed.| Enum Constant and Description |
|---|
FIRST_TO_LAST |
LAST_TO_FIRST |
| Modifier and Type | Method and Description |
|---|---|
static CompositeBuffer.DisposeOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompositeBuffer.DisposeOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompositeBuffer.DisposeOrder LAST_TO_FIRST
public static final CompositeBuffer.DisposeOrder FIRST_TO_LAST
public static CompositeBuffer.DisposeOrder[] values()
for (CompositeBuffer.DisposeOrder c : CompositeBuffer.DisposeOrder.values()) System.out.println(c);
public static CompositeBuffer.DisposeOrder 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 © 2017–2019 Oracle Corporation. All rights reserved.