public enum Wt extends Enum<Wt> implements IMarkVal
| Modifier and Type | Method and Description |
|---|---|
static Wt |
of(String wt) |
String |
val() |
static Wt |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Wt[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Wt JSON
public static final Wt XML
public static final Wt PYTHON
public static final Wt RUBY
public static final Wt PHP
public static final Wt CSV
public static Wt[] values()
for (Wt c : Wt.values()) System.out.println(c);
public static Wt 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 © 2019. All rights reserved.