Package com.axway.apim.setup.impl
Enum APIManagerSetupResultHandler.ResultHandler
- java.lang.Object
-
- java.lang.Enum<APIManagerSetupResultHandler.ResultHandler>
-
- com.axway.apim.setup.impl.APIManagerSetupResultHandler.ResultHandler
-
- All Implemented Interfaces:
Serializable,Comparable<APIManagerSetupResultHandler.ResultHandler>
- Enclosing class:
- APIManagerSetupResultHandler
public static enum APIManagerSetupResultHandler.ResultHandler extends Enum<APIManagerSetupResultHandler.ResultHandler>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONSOLE_EXPORTERJSON_EXPORTER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<APIManagerSetupResultHandler>getClazz()static APIManagerSetupResultHandler.ResultHandlervalueOf(String name)Returns the enum constant of this type with the specified name.static APIManagerSetupResultHandler.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 APIManagerSetupResultHandler.ResultHandler JSON_EXPORTER
-
CONSOLE_EXPORTER
public static final APIManagerSetupResultHandler.ResultHandler CONSOLE_EXPORTER
-
-
Method Detail
-
values
public static APIManagerSetupResultHandler.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 (APIManagerSetupResultHandler.ResultHandler c : APIManagerSetupResultHandler.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 APIManagerSetupResultHandler.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<APIManagerSetupResultHandler> getClazz()
-
-