javolution.util.internal.map.SequentialMapImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javolution-core-java-msftbx Show documentation
Show all versions of javolution-core-java-msftbx Show documentation
Only the Java Core part of Javolution library, with slight modifications for use in MSFTBX.
/*
* Javolution - Java(TM) Solution for Real-Time and Embedded Systems
* Copyright (C) 2012 - Javolution (http://javolution.org/)
* All rights reserved.
*
* Permission to use, copy, modify, and distribute this software is
* freely granted, provided that this notice is preserved.
*/
package javolution.util.internal.map;
import java.util.Iterator;
import javolution.util.function.Consumer;
import javolution.util.function.Equality;
import javolution.util.service.MapService;
/**
* A sequential view over a map.
*/
public class SequentialMapImpl extends MapView {
private static final long serialVersionUID = 0x600L; // Version.
public SequentialMapImpl(MapService target) {
super(target);
}
@Override
public void clear() {
target().clear();
}
@Override
public boolean containsKey(Object key) {
return target().containsKey(key);
}
@Override
public V get(Object key) {
return target().get(key);
}
@Override
public boolean isEmpty() {
return target().isEmpty();
}
@Override
public Iterator> iterator() {
return target().iterator();
}
@Override
public Equality super K> keyComparator() {
return target().keyComparator();
}
@Override
public void perform(Consumer> action, MapService view) {
action.accept(view); // Executes immediately.
}
@Override
public V put(K key, V value) {
return target().put(key, value);
}
@Override
public V remove(Object key) {
return target().remove(key);
}
@Override
public int size() {
return target().size();
}
@Override
public void update(Consumer> action, MapService view) {
action.accept(view); // Executes immediately.
}
@Override
public Equality super V> valueComparator() {
return target().valueComparator();
}
@Override
public MapService[] split(int n, boolean threadsafe) {
return target().split(n, threadsafe); // Forwards.
}
}