public static enum AppendRequestParameters.Mode extends Enum<AppendRequestParameters.Mode>
| Enum Constant and Description |
|---|
APPEND_MODE |
FLUSH_CLOSE_MODE |
FLUSH_MODE |
| Modifier and Type | Method and Description |
|---|---|
static AppendRequestParameters.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppendRequestParameters.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppendRequestParameters.Mode APPEND_MODE
public static final AppendRequestParameters.Mode FLUSH_MODE
public static final AppendRequestParameters.Mode FLUSH_CLOSE_MODE
public static AppendRequestParameters.Mode[] values()
for (AppendRequestParameters.Mode c : AppendRequestParameters.Mode.values()) System.out.println(c);
public static AppendRequestParameters.Mode 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 © 2008–2022 Apache Software Foundation. All rights reserved.