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

org.jgrasstools.gears.utils.clustering.GvmSimpleKeyer Maven / Gradle / Ivy

/*
 * Copyright 2007 Tom Gibara
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0

 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
 */
package org.jgrasstools.gears.utils.clustering;

/**
 * A convenience class that reduces the task of choosing a key for a cluster to
 * that of choosing-between/combining two non-null keys.
 * 
 * @author Tom Gibara
 * 
 * @param 
 *            the key type
 */

public abstract class GvmSimpleKeyer implements GvmKeyer {

	@Override
	public K mergeKeys(GvmCluster c1, GvmCluster c2) {
		K k1 = c1.getKey();
		K k2 = c2.getKey();
		if (k1 == null) return k2;
		if (k2 == null) return k1;
		return combineKeys(k1, k2);
	}
	
	@Override
	public K addKey(GvmCluster cluster, K k2) {
		K k1 = cluster.getKey();
		if (k1 == null) return k2;
		if (k2 == null) return k1;
		return combineKeys(k1, k2);
	}
	
	/**
	 * Combines two keys. Combining two keys may totally discard information
	 * from one, both or none of the supplied keys.
	 * 
	 * @param k1
	 *            a key, not null
	 * @param k2
	 *            a key, not null
	 * 
	 * @return a combined key
	 */
	protected abstract K combineKeys(K k1, K k2);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy