org.semanticweb.elk.util.collections.AbstractHashMultimap Maven / Gradle / Ivy
/*
* #%L
* elk-reasoner
*
* $Id$
* $HeadURL$
* %%
* Copyright (C) 2011 Oxford University Computing Laboratory
* %%
* 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.
* #L%
*/
package org.semanticweb.elk.util.collections;
import java.util.Collection;
import java.util.Collections;
/**
*
* Implementation of Multimap backed by an ArrayHashMap
*
* @author Frantisek Simancik
*
* @param
* the keys of the multimap
* @param
* the values of the multimap
*/
public abstract class AbstractHashMultimap extends
ArrayHashMap> implements Multimap {
protected abstract Collection newRecord();
public AbstractHashMultimap() {
super();
}
public AbstractHashMultimap(int i) {
super(i);
}
@Override
public boolean contains(Key key, Value value) {
Collection record = super.get(key);
if (record == null)
return false;
// else
return record.contains(value);
}
@Override
public boolean add(Key key, Value value) {
Collection record = super.get(key);
if (record == null) {
record = newRecord();
put(key, record);
}
return record.add(value);
}
@Override
public Collection get(Object key) {
Collection result = super.get(key);
if (result == null)
return Collections.emptyList();
return result;
}
/**
* @param key
* the key for which to retrieve the associated values
* @return the collection of values associated with the given key, or
* {@code null} if no value us associated
*/
public Collection getValues(Object key) {
return super.get(key);
}
@Override
public boolean remove(Object key, Object value) {
Collection record = super.get(key);
if (record == null)
return false;
if (record.remove(value)) {
if (record.isEmpty())
super.remove(key);
return true;
}
// else
return false;
}
}