public static enum LogSettings.Verbosity extends Enum<LogSettings.Verbosity>
| Modifier and Type | Method and Description |
|---|---|
static LogSettings.Verbosity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogSettings.Verbosity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogSettings.Verbosity quiet
public static final LogSettings.Verbosity normal
public static final LogSettings.Verbosity verbose
public static LogSettings.Verbosity[] values()
for (LogSettings.Verbosity c : LogSettings.Verbosity.values()) System.out.println(c);
public static LogSettings.Verbosity 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.