Package com.axway.apim.appexport.impl
Enum ApplicationExporter.ResultHandler
- java.lang.Object
-
- java.lang.Enum<ApplicationExporter.ResultHandler>
-
- com.axway.apim.appexport.impl.ApplicationExporter.ResultHandler
-
- All Implemented Interfaces:
Serializable,Comparable<ApplicationExporter.ResultHandler>
- Enclosing class:
- ApplicationExporter
public static enum ApplicationExporter.ResultHandler extends Enum<ApplicationExporter.ResultHandler>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONSOLE_EXPORTERCSV_EXPORTERDELETE_APP_HANDLERJSON_EXPORTERYAML_EXPORTER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<ApplicationExporter>getClazz()static ApplicationExporter.ResultHandlervalueOf(String name)Returns the enum constant of this type with the specified name.static ApplicationExporter.ResultHandler[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JSON_EXPORTER
public static final ApplicationExporter.ResultHandler JSON_EXPORTER
-
YAML_EXPORTER
public static final ApplicationExporter.ResultHandler YAML_EXPORTER
-
CONSOLE_EXPORTER
public static final ApplicationExporter.ResultHandler CONSOLE_EXPORTER
-
CSV_EXPORTER
public static final ApplicationExporter.ResultHandler CSV_EXPORTER
-
DELETE_APP_HANDLER
public static final ApplicationExporter.ResultHandler DELETE_APP_HANDLER
-
-
Method Detail
-
values
public static ApplicationExporter.ResultHandler[] 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 (ApplicationExporter.ResultHandler c : ApplicationExporter.ResultHandler.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApplicationExporter.ResultHandler 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
-
getClazz
public Class<ApplicationExporter> getClazz()
-
-