Serializable, Comparable<VerboseMode>public enum VerboseMode extends Enum<VerboseMode>
| Enum Constant | Description |
|---|---|
EXTRA |
Output extra info.
|
NORMAL |
Output normally.
|
SILENT |
Be completely silent.
|
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
equalsOrHigherThan(VerboseMode other) |
|
static VerboseMode |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static VerboseMode[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerboseMode SILENT
public static final VerboseMode NORMAL
public static final VerboseMode EXTRA
public static VerboseMode[] values()
for (VerboseMode c : VerboseMode.values()) System.out.println(c);
public static VerboseMode 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 nullpublic boolean equalsOrHigherThan(VerboseMode other)
Copyright © 2012-2017 Oracle. All Rights Reserved.