All Downloads are FREE. Search and download functionalities are using the official Maven repository.

flexjson.factories.CharacterObjectFactory Maven / Gradle / Ivy

package flexjson.factories;

import flexjson.ObjectFactory;
import flexjson.ObjectBinder;

import java.lang.reflect.Type;

public class CharacterObjectFactory implements ObjectFactory {

    public Object instantiate(ObjectBinder context, Object value, Type targetType, Class targetClass) {
        return value.toString().charAt(0);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy