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

org.sfm.map.column.GetterFactoryProperty Maven / Gradle / Ivy

package org.sfm.map.column;


import org.sfm.map.GetterFactory;

public class GetterFactoryProperty implements ColumnProperty {
    private final GetterFactory getterFactory;

    public GetterFactoryProperty(GetterFactory getterFactory) {
        this.getterFactory = getterFactory;
    }

    public GetterFactory getGetterFactory() {
        return getterFactory;
    }

    @Override
    public String toString() {
        return "GetterFactory{GetterFactory}";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy