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