Package com.axway.apim.lib
Enum StandardExportParams.OutputFormat
- java.lang.Object
-
- java.lang.Enum<StandardExportParams.OutputFormat>
-
- com.axway.apim.lib.StandardExportParams.OutputFormat
-
- All Implemented Interfaces:
Serializable,Comparable<StandardExportParams.OutputFormat>
- Enclosing class:
- StandardExportParams
public static enum StandardExportParams.OutputFormat extends Enum<StandardExportParams.OutputFormat>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StandardExportParams.OutputFormatgetFormat(String name)static StandardExportParams.OutputFormatvalueOf(String name)Returns the enum constant of this type with the specified name.static StandardExportParams.OutputFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
console
public static final StandardExportParams.OutputFormat console
-
json
public static final StandardExportParams.OutputFormat json
-
csv
public static final StandardExportParams.OutputFormat csv
-
yaml
public static final StandardExportParams.OutputFormat yaml
-
dat
public static final StandardExportParams.OutputFormat dat
-
-
Method Detail
-
values
public static StandardExportParams.OutputFormat[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StandardExportParams.OutputFormat c : StandardExportParams.OutputFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StandardExportParams.OutputFormat valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getFormat
public static StandardExportParams.OutputFormat getFormat(String name)
-
-