public enum Reports2Format extends java.lang.Enum<Reports2Format> implements EnumConverter<Reports2Format>
Modifier and Type | Method and Description |
---|---|
static Reports2Format |
from(java.lang.String value) |
java.lang.String |
to(Reports2Format v) |
static Reports2Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Reports2Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Reports2Format XLSX
public static final Reports2Format CSV
public static Reports2Format[] values()
for (Reports2Format c : Reports2Format.values()) System.out.println(c);
public static Reports2Format valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static Reports2Format from(java.lang.String value)
public java.lang.String to(Reports2Format v)
to
in interface EnumConverter<Reports2Format>