public enum DoubleValueMapper extends Enum<DoubleValueMapper> implements ValueMapper<Double>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
boolean |
handles(Class<?> type,
Class<?>... parameters)
Checks if given type is supported by this handler
|
Double |
transform(String value)
Returns converted value from a string
|
static DoubleValueMapper |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DoubleValueMapper[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DoubleValueMapper INSTANCE
public static DoubleValueMapper[] values()
for (DoubleValueMapper c : DoubleValueMapper.values()) System.out.println(c);
public static DoubleValueMapper 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 boolean handles(Class<?> type, Class<?>... parameters)
ValueMapperhandles in interface ValueMapper<Double>type - Type to be supportedparameters - Types that have to match in case type is generic typetrue if this is supported, false otherwisepublic Double transform(String value)
ValueMappertransform in interface ValueMapper<Double>value - String value to be convertedCopyright © 2013 JBoss by Red Hat. All Rights Reserved.