Open Source Repository

Home /json/flexjson-2.1 | Repository Home



flexjson/factories/EnumObjectFactory.java
package flexjson.factories;

import flexjson.ObjectFactory;
import flexjson.JSONException;
import flexjson.ObjectBinder;

import java.lang.reflect.Type;

public class EnumObjectFactory implements ObjectFactory {
    public Object instantiate(ObjectBinder context, Object value, Type targetType, Class targetClass) {
        ifvalue instanceof String ) {
            return Enum.valueOf( (Class)targetType, value.toString() );
        else {
            throw new JSONExceptionString.format("%s:  Don't know how to convert %s to enumerated constant of %s", context.getCurrentPath(), value, targetType ) );
        }
    }
}