java.io.Serializable, java.lang.Comparable<AppendRequestParameters.Mode>public static enum AppendRequestParameters.Mode extends java.lang.Enum<AppendRequestParameters.Mode>
| Enum Constant | Description |
|---|---|
APPEND_MODE |
|
FLUSH_CLOSE_MODE |
|
FLUSH_MODE |
| Modifier and Type | Method | Description |
|---|---|---|
static AppendRequestParameters.Mode |
valueOf(java.lang.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(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 namejava.lang.NullPointerException - if the argument is nullCopyright © 2008–2025 Apache Software Foundation. All rights reserved.