org.wicketstuff.mergedresources.util.Pair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicketstuff-merged-resources Show documentation
Show all versions of wicketstuff-merged-resources Show documentation
Resource merging for Apache Wicket (http://wicket.apache.org),
see http://talk-on-tech.blogspot.com/2008/08/wicket-interface-speed-up-merging.html
/**
* Copyright 2010 Molindo GmbH
*
* 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.wicketstuff.mergedresources.util;
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map.Entry;
public class Pair implements Serializable {
private static final long serialVersionUID = 1L;
private A _first;
private B _second;
/**
* Contructs a pair holding two null values.
*/
public Pair() {
_first = null;
_second = null;
}
/**
* Contructs a pair holding the given objects.
*/
public Pair(final A a, final B b) {
_first = a;
_second = b;
}
/**
* Contructs a pair holding the objects of the given pair.
*/
public Pair(final Pair p) {
_first = p.getFirst();
_second = p.getSecond();
}
public Pair(final Entry e) {
_first = e.getKey();
_second = e.getValue();
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + (_first == null ? 0 : _first.hashCode());
result = prime * result + (_second == null ? 0 : _second.hashCode());
return result;
}
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof Pair)) {
return false;
}
final Pair, ?> other = (Pair, ?>) obj;
if (_first == null) {
if (other._first != null) {
return false;
}
} else if (!_first.equals(other._first)) {
return false;
}
if (_second == null) {
if (other._second != null) {
return false;
}
} else if (!_second.equals(other._second)) {
return false;
}
return true;
}
public A getFirst() {
return _first;
}
public void setFirst(final A first) {
_first = first;
}
public B getSecond() {
return _second;
}
public void setSecond(final B second) {
_second = second;
}
// alias for getSecond, inspired by Map.Entry
public B getValue() {
return getSecond();
}
// alias for getFirst, inspired by Map.Entry
public A getKey() {
return getFirst();
}
@Override
public String toString() {
return "['" + getKey() + "' = '" + getValue() + "']";
}
public static HashMap toHashMap(final List> pairs) {
final HashMap map = new HashMap();
for (final Pair pair : pairs) {
map.put(pair.getKey(), pair.getValue());
}
return map;
}
}