public class CharacterArrayConverter extends java.lang.Object implements TypeConverter<char[]>
char[]
.Modifier and Type | Field and Description |
---|---|
protected TypeConverterManager |
typeConverterManager |
Constructor and Description |
---|
CharacterArrayConverter(TypeConverterManager typeConverterManager) |
Modifier and Type | Method and Description |
---|---|
char[] |
convert(java.lang.Object value)
Converts object received as parameter into object of another class.
|
protected char[] |
convertArrayToArray(java.lang.Object value)
Converts array value to array.
|
protected char[] |
convertPrimitiveArrayToArray(java.lang.Object value,
java.lang.Class primitiveComponentType)
Converts primitive array to target array.
|
protected char[] |
convertToSingleElementArray(java.lang.Object value)
Creates an array with single element.
|
protected char |
convertType(java.lang.Object value)
Converts type using type converter manager.
|
protected char[] |
convertValueToArray(java.lang.Object value)
Converts non-array value to array.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
convert
protected final TypeConverterManager typeConverterManager
public CharacterArrayConverter(TypeConverterManager typeConverterManager)
public char[] convert(java.lang.Object value)
TypeConverter
Integer
converter tries to convert given objects
into target Integer
object. Converters should try all reasonable
ways of conversion into target object, depending on target type.convert
in interface TypeConverter<char[]>
value
- object to convert fromprotected char convertType(java.lang.Object value)
protected char[] convertToSingleElementArray(java.lang.Object value)
protected char[] convertValueToArray(java.lang.Object value)
protected char[] convertArrayToArray(java.lang.Object value)
protected char[] convertPrimitiveArrayToArray(java.lang.Object value, java.lang.Class primitiveComponentType)
Copyright © 2003-present Jodd Team