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

org.simpleflatmapper.reflect.meta.PropertyNameMatcherKeyValuePair Maven / Gradle / Ivy

package org.simpleflatmapper.reflect.meta;

public class PropertyNameMatcherKeyValuePair {

    private final PropertyNameMatcher key;
    private final PropertyNameMatcher value;

    public PropertyNameMatcherKeyValuePair(PropertyNameMatcher key, PropertyNameMatcher value) {
        this.key = key;
        this.value = value;
    }

    public PropertyNameMatcher getKey() {
        return key;
    }

    public PropertyNameMatcher getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy