public enum OutputFormatEnum extends Enum<OutputFormatEnum>
| Modifier and Type | Method and Description |
|---|---|
static OutputFormatEnum |
fromString(String outputTypeText)
Convert String to enum.
|
static OutputFormatEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputFormatEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputFormatEnum CSV
public static final OutputFormatEnum TABLE
public static OutputFormatEnum[] values()
for (OutputFormatEnum c : OutputFormatEnum.values()) System.out.println(c);
public static OutputFormatEnum 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 OutputFormatEnum fromString(String outputTypeText)
outputTypeText - output formatter type in text.Copyright © 2018 WSO2. All rights reserved.