public static enum Tester.Format extends Enum<Tester.Format>
| Modifier and Type | Method and Description |
|---|---|
String |
getText() |
static Tester.Format |
of(String text) |
static Tester.Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tester.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tester.Format JSON
public static final Tester.Format XML
public static final Tester.Format HTML
public static Tester.Format[] values()
for (Tester.Format c : Tester.Format.values()) System.out.println(c);
public static Tester.Format 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 static Tester.Format of(String text)
public String getText()
Copyright © 2020. All rights reserved.