public enum IntegerValueMapper extends Enum<IntegerValueMapper> implements ValueMapper<Integer>
| 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
|
Integer |
transform(String value)
Returns converted value from a string
|
static IntegerValueMapper |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntegerValueMapper[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntegerValueMapper INSTANCE
public static IntegerValueMapper[] values()
for (IntegerValueMapper c : IntegerValueMapper.values()) System.out.println(c);
public static IntegerValueMapper 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<Integer>type - Type to be supportedparameters - Types that have to match in case type is generic typetrue if this is supported, false otherwisepublic Integer transform(String value)
ValueMappertransform in interface ValueMapper<Integer>value - String value to be convertedCopyright © 2017 JBoss by Red Hat. All rights reserved.