public enum TypeHandler extends Enum<TypeHandler>
| Enum Constant and Description |
|---|
BOOLEAN |
BYTE |
CHAR |
DOUBLE |
FLOAT |
INTEGER |
LIST |
LONG |
MAP |
PROPERTIES |
SHORT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
String |
getCloser(Mutator mutator) |
String |
getOpener(Mutator mutator) |
static TypeHandler |
identify(Class<?> clazz) |
static TypeHandler |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeHandler[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeHandler STRING
public static final TypeHandler INTEGER
public static final TypeHandler FLOAT
public static final TypeHandler DOUBLE
public static final TypeHandler LONG
public static final TypeHandler SHORT
public static final TypeHandler BOOLEAN
public static final TypeHandler BYTE
public static final TypeHandler CHAR
public static final TypeHandler LIST
public static final TypeHandler PROPERTIES
public static final TypeHandler MAP
public static TypeHandler[] values()
for (TypeHandler c : TypeHandler.values()) System.out.println(c);
public static TypeHandler 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 TypeHandler identify(Class<?> clazz)
Copyright © 2021. All rights reserved.