public static enum FormatterElement.Type extends Enum<FormatterElement.Type>
Enum Constant and Description |
---|
checkstyle |
junit |
plain |
report |
xml |
Modifier and Type | Method and Description |
---|---|
static FormatterElement.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormatterElement.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormatterElement.Type plain
public static final FormatterElement.Type xml
public static final FormatterElement.Type junit
public static final FormatterElement.Type report
public static final FormatterElement.Type checkstyle
public static FormatterElement.Type[] values()
for (FormatterElement.Type c : FormatterElement.Type.values()) System.out.println(c);
public static FormatterElement.Type 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 © 2007-2013. All Rights Reserved.