public enum DataWriterType extends Enum<DataWriterType>
created on: 07.10.2012
| Enum Constant and Description |
|---|
CSV |
CSV_TS |
PLAIN |
PNG |
SIMPLE |
SUMMARY |
| Modifier and Type | Method and Description |
|---|---|
static DataWriterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataWriterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataWriterType PLAIN
public static final DataWriterType CSV
public static final DataWriterType CSV_TS
public static final DataWriterType SIMPLE
public static final DataWriterType SUMMARY
public static final DataWriterType PNG
public static DataWriterType[] values()
for (DataWriterType c : DataWriterType.values()) System.out.println(c);
public static DataWriterType 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.