org.apache.tiles.request.collection.MapEntryArrayValues Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tiles-request-api Show documentation
Show all versions of tiles-request-api Show documentation
API for the Tiles Request framework.
The newest version!
/*
* $Id: MapEntryArrayValues.java 1064782 2011-01-28 17:08:52Z apetrelli $
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.tiles.request.collection;
import java.util.Map;
/**
* Multi-valued map entry.
*
* @version $Rev: 1064782 $ $Date: 2011-01-29 04:08:52 +1100 (Sat, 29 Jan 2011) $
* @param The key type.
* @param The value type.
*/
public class MapEntryArrayValues extends MapEntry {
/**
* Constructor.
*
* @param key The key of the entry.
* @param value The array of values.
* @param modifiable If true
the entry is modifiable.
*/
public MapEntryArrayValues(K key, V[] value, boolean modifiable) {
super(key, value, modifiable);
}
/**
* Returns the hashcode for this entry.
*
* @return The and'ed hashcode of the key and value
*/
@Override
public int hashCode() {
int valueHash = 0;
V[] value = getValue();
if (value != null) {
for (int i = 0; i < value.length; i++) {
valueHash += value[i].hashCode();
}
}
return (this.getKey() == null ? 0 : this.getKey().hashCode())
^ valueHash;
}
/**
* Determines if this entry is equal to the passed object.
*
* @param o The object to test
* @return True if equal, else false
*/
@Override
@SuppressWarnings("unchecked")
public boolean equals(Object o) {
if (o != null && o instanceof Map.Entry) {
Map.Entry entry = (Map.Entry) o;
if (this.getKey() == null ? entry.getKey() == null : this
.getKey().equals(entry.getKey())) {
V[] values = getValue();
V[] otherValues = entry.getValue();
if (values != null) {
if (otherValues != null) {
if (values.length == otherValues.length) {
boolean same = true;
for (int i = 0; i < values.length && same; i++) {
same = values[i] == null ? otherValues[i] == null
: values[i].equals(otherValues[i]);
}
return same;
}
} else {
return false;
}
} else {
return otherValues == null;
}
}
}
return false;
}
}