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

org.simpleflatmapper.converter.EmptyContextFactory Maven / Gradle / Ivy

package org.simpleflatmapper.converter;

public class EmptyContextFactory implements ContextFactory {
    
    private EmptyContextFactory(){
    }
    
    @Override
    public Context newContext() {
        return EmptyContext.INSTANCE;
    }

    public static final EmptyContextFactory INSTANCE = new EmptyContextFactory();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy