
org.cyclopsgroup.caff.conversion.CharArrayConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of caff Show documentation
Show all versions of caff Show documentation
Java conversion and formatting framework
The newest version!
package org.cyclopsgroup.caff.conversion;
import org.cyclopsgroup.caff.CharArrayCharSequence;
/**
* Converter implementation for character array
*
* @author Jiaqi Guo
*/
public class CharArrayConverter implements Converter {
@Override
public char[] fromCharacters(CharSequence text) {
return CharArrayCharSequence.sequenceToArray(text);
}
@Override
public CharSequence toCharacters(char[] value) {
return new CharArrayCharSequence(value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy