public abstract class EnumConverter<E extends Enum<E>> extends Object implements ValueConverter<E>
Enums.| Modifier and Type | Method and Description |
|---|---|
E |
convert(String value)
Converts the given string value into a Java type.
|
String |
revert(Object value)
Reverts a value to a string representation.
|
void |
setDelimiters(String delimiters)
Sets the delimiters for the message string.
|
String |
valuePattern()
Gives a string that describes the pattern of the values this converter expects, if any.
|
Class<E> |
valueType()
Gives the class of the type of values this converter converts to.
|
public E convert(String value)
ValueConverterconvert in interface ValueConverter<E extends Enum<E>>value - the string to convertpublic String revert(Object value)
ValueConverterReverts a value to a string representation.
It is not strictly required that revert(convert(v)).equals(v),
but it is recommended.
revert in interface ValueConverter<E extends Enum<E>>value - a valuepublic Class<E> valueType()
ValueConvertervalueType in interface ValueConverter<E extends Enum<E>>public void setDelimiters(String delimiters)
delimiters - delimiters for message string. Default is [,]public String valuePattern()
ValueConverterdate format string.valuePattern in interface ValueConverter<E extends Enum<E>>null if there's nothing interesting here© Copyright 2004-2016 Paul R. Holser, Jr. All rights reserved. Licensed under The MIT License.