|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<AntLogLevel>
org.schmant.task.apache.ant.AntLogLevel
public enum AntLogLevel
Enumeration over the Ant log levels.
| Enum Constant Summary | |
|---|---|
DEBUG
The -debug flag. |
|
NORMAL
The standard log level. |
|
QUIET
The -quiet flag. |
|
VERBOSE
The -verbose flag. |
|
| Method Summary | |
|---|---|
String |
getFlag()
Get the log level's Ant command line flag. |
String |
toString()
|
static AntLogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AntLogLevel[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final AntLogLevel DEBUG
-debug flag.
public static final AntLogLevel VERBOSE
-verbose flag.
public static final AntLogLevel NORMAL
public static final AntLogLevel QUIET
-quiet flag.
| Method Detail |
|---|
public static AntLogLevel[] values()
for (AntLogLevel c : AntLogLevel.values()) System.out.println(c);
public static AntLogLevel valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String getFlag()
public String toString()
toString in class Enum<AntLogLevel>
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||