summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/data/Pair.java
blob: 87727be37ee97e41005721d1d57ec8e1323b0d3b (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package bjc.utils.data;

import java.util.function.BiConsumer;
import java.util.function.BiFunction;

/**
 * Holds a pair of values of two different types.
 * 
 * Is an eager variant of {@link IPair}
 * 
 * @author ben
 *
 * @param <L>
 *            The type of the thing held on the left (first)
 * @param <R>
 *            The type of the thing held on the right (second)
 */
public class Pair<L, R> implements IPair<L, R> {
	/**
	 * The left value of the pair
	 */
	protected L	leftValue;

	/**
	 * The right value of the pair
	 */
	protected R	rightValue;

	/**
	 * Create a new pair that holds two nulls.
	 */
	public Pair() {

	}

	/**
	 * Create a new pair holding the specified values.
	 * 
	 * @param left
	 *            The value to hold on the left.
	 * @param right
	 *            The value to hold on the right.
	 */
	public Pair(L left, R right) {
		leftValue = left;
		rightValue = right;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see bjc.utils.data.IPair#doWith(java.util.function.BiConsumer)
	 */
	@Override
	public void doWith(BiConsumer<L, R> action) {
		if (action == null) {
			throw new NullPointerException("Action must be non-null");
		}

		action.accept(leftValue, rightValue);
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see bjc.utils.data.IPair#merge(java.util.function.BiFunction)
	 */
	@Override
	public <E> E merge(BiFunction<L, R, E> merger) {
		if (merger == null) {
			throw new NullPointerException("Merger must be non-null");
		}

		return merger.apply(leftValue, rightValue);
	}

	@Override
	public String toString() {
		String leftValueString;

		if (leftValue != null) {
			leftValueString = leftValue.toString();
		} else {
			leftValueString = "(null)";
		}

		String rightValueString;

		if (rightValue != null) {
			rightValueString = rightValue.toString();
		} else {
			rightValueString = "(null)";
		}

		return "pair[l=" + leftValueString + ", r=" + rightValueString
				+ "]";
	}

	@Override
	public <L2, R2> IPair<L2, R2> bind(
			BiFunction<L, R, IPair<L2, R2>> binder) {
		return binder.apply(leftValue, rightValue);
	}
}