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

org.sfm.map.impl.KeyFieldMapperCouple Maven / Gradle / Ivy

package org.sfm.map.impl;



public class KeyFieldMapperCouple {
	
	private final K key;
	private final FieldMapper fieldMapper;
	
	public KeyFieldMapperCouple(K key, FieldMapper fieldMapper) {
		this.key = key;
		this.fieldMapper = fieldMapper;
	}

	public K getKey() {
		return key;
	}

	public FieldMapper getFieldMapper() {
		return fieldMapper;
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy