public enum SimpleValueTransformer extends Enum<SimpleValueTransformer>
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
accepts(Class<?> type) |
abstract Object |
adaptTo(Node valueNode,
Class<?> returnType) |
static SimpleValueTransformer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimpleValueTransformer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleValueTransformer STRING
public static final SimpleValueTransformer BOOLEAN
public static final SimpleValueTransformer INT
public static final SimpleValueTransformer FLOAT
public static final SimpleValueTransformer ENUM
public static SimpleValueTransformer[] values()
for (SimpleValueTransformer c : SimpleValueTransformer.values()) System.out.println(c);
public static SimpleValueTransformer 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 abstract boolean accepts(Class<?> type)
Copyright © 2017. All rights reserved.