public enum JavadocOutputLevel extends Enum<JavadocOutputLevel>
| Enum Constant and Description | 
|---|
| QUIET-quiet
 Shuts off non-error and non-warning messages, leaving only the warnings and errors appear,
 making them easier to view. | 
| VERBOSE-verbose
 
 Provides more detailed messages while javadoc is running. | 
| Modifier and Type | Method and Description | 
|---|---|
| static JavadocOutputLevel | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static JavadocOutputLevel[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final JavadocOutputLevel VERBOSE
public static final JavadocOutputLevel QUIET
public static JavadocOutputLevel[] values()
for (JavadocOutputLevel c : JavadocOutputLevel.values()) System.out.println(c);
public static JavadocOutputLevel 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 null