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

org.picocontainer.converters.ConvertsNothing Maven / Gradle / Ivy

The newest version!
package org.picocontainer.converters;

import org.picocontainer.Converters;

import java.lang.reflect.Type;

/**
 * Null-object implementation of Converters
 */
public class ConvertsNothing implements Converters {
    public boolean canConvert(Type type) {
        return false;
    }

    public Object convert(String paramValue, Type type) {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy