Skip to main content
summaryrefslogtreecommitdiffstats
blob: 80111a3d8ce6d9d03df8e2e72d10eb9f6ea3a34d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*******************************************************************************
 * Copyright (c) 2013, 2016 Oracle. All rights reserved.
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0, which accompanies this distribution
 * and is available at http://www.eclipse.org/legal/epl-v10.html.
 * 
 * Contributors:
 *     Oracle - initial API and implementation
 ******************************************************************************/
package org.eclipse.jpt.common.utility.internal.transformer;

import java.util.Map;
import org.eclipse.jpt.common.utility.internal.ObjectTools;
import org.eclipse.jpt.common.utility.transformer.Transformer;

/**
 * A transformer that will map the input to an output via a client-configured
 * map.
 * 
 * @param <I> input: the type of the object passed to the transformer
 *   (i.e. the type of the map's keys)
 * @param <O> output: the type of the object returned by the transformer
 *   (i.e. the type of the map's values)
 */
public class MapTransformer<I, O>
	implements Transformer<I, O>
{
	private final Map<? super I, ? extends O> map;


	public MapTransformer(Map<? super I, ? extends O> map) {
		super();
		if (map == null) {
			throw new NullPointerException();
		}
		this.map = map;
	}

	public O transform(I input) {
		return this.map.get(input);
	}

	public Map<? super I, ? extends O> getMap() {
		return this.map;
	}

	@Override
	public String toString() {
		return ObjectTools.toString(this, this.map);
	}
}

Back to the top