public enum StatementFormatVerbosity extends Enum<StatementFormatVerbosity>
This should be used as a guideline as to how much information about the statement should be extracted and formatted.
| Enum Constant and Description |
|---|
ABRIDGED
Formatters should only print a basic information in summarized form.
|
EXTENDED
Formatters should print full information, including the statement's query string, if available,
and the statement's bound values, if available.
|
NORMAL
Formatters should print basic information in summarized form, and the statement's query string,
if available.
|
| Modifier and Type | Method and Description |
|---|---|
static StatementFormatVerbosity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatementFormatVerbosity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatementFormatVerbosity ABRIDGED
public static final StatementFormatVerbosity NORMAL
For batch statements, this verbosity level should allow formatters to print information about the batch's inner statements.
public static final StatementFormatVerbosity EXTENDED
public static StatementFormatVerbosity[] values()
for (StatementFormatVerbosity c : StatementFormatVerbosity.values()) System.out.println(c);
public static StatementFormatVerbosity 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–2021 DataStax. All rights reserved.