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