001: /*
002: * fastutil: Fast & compact type-specific collections for Java
003: *
004: * Copyright (C) 2002-2008 Sebastiano Vigna
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation; either
009: * version 2.1 of the License, or (at your option) any later version.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014: * Lesser General Public License for more details.
015: *
016: * You should have received a copy of the GNU Lesser General Public
017: * License along with this library; if not, write to the Free Software
018: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
019: *
020: */
021:
022: package it.unimi.dsi.fastutil;
023:
024: /** A function mapping keys into values.
025: *
026: * <p>Instances of this class represent functions: the main difference with {@link java.util.Map}
027: * is that functions do not in principle allow enumeration of their domain or range. The need for
028: * this interface lies in the existence of several highly optimized implementations of
029: * functions (e.g., minimal perfect hashes) which do not actually store their domain or range explicitly.
030: * In case the domain is known, {@link #containsKey(Object)} can be used to perform membership queries.
031: *
032: * <p>The choice of naming all methods exactly as in {@link java.util.Map} makes it possible
033: * for all type-specific maps to extend type-specific functions (e.g., {@link it.unimi.dsi.fastutil.ints.Int2IntMap}
034: * extends {@link it.unimi.dsi.fastutil.ints.Int2IntFunction}). However, {@link #size()} is allowed to return -1 to denote
035: * that the number of keys is not available (e.g., in the case of a string hash function).
036: *
037: * <p>Note that there is an {@link it.unimi.dsi.fastutil.objects.Object2ObjectFunction} that
038: * can also set its default return value.
039: *
040: * <p><strong>Warning</strong>: Equality of functions is <em>by reference</em>. Since there
041: * is no way to enumerate the keys, there is no way to establish whether two functions represent the same
042: * mathematical entity.
043: *
044: * @see java.util.Map
045: */
046:
047: public interface Function<K, V> {
048:
049: /** Associates the specified value with the specified key in this function (optional operation).
050: *
051: * @param key the key.
052: * @param value the value.
053: * @return the old value, or <code>null</code> if no value was present for the given key.
054: * @see java.util.Map#put(Object,Object)
055: */
056:
057: V put(K key, V value);
058:
059: /** Returns the value associated by this function to the specified key.
060: *
061: * @param key the key.
062: * @return the corresponding value, or <code>null</code> if no value was present for the given key.
063: * @see java.util.Map#get(Object)
064: */
065:
066: V get(Object key);
067:
068: /** Returns true if this function contains a mapping for the specified key.
069: *
070: * <p>Note that for some kind of functions (e.g., hashes) this method
071: * will always return true.
072: *
073: * @param key the key.
074: * @return true if this function associates a value to <code>key</code>.
075: * @see java.util.Map#containsKey(Object)
076: */
077:
078: boolean containsKey(Object key);
079:
080: /** Removes this key and the associated value from this function if it is present (optional operation).
081: *
082: * @param key
083: * @return the old value, or <code>null</code> if no value was present for the given key.
084: * @see java.util.Map#remove(Object)
085: */
086:
087: V remove(Object key);
088:
089: /** Returns the intended number of keys in this function, or -1 if no such number exists.
090: *
091: * <p>Most function implementations will have some knowledge of the intended number of keys
092: * in their domain. In some cases, however, this might not be possible.
093: *
094: * @return the intended number of keys in this function, or -1 if that number is not available.
095: */
096: int size();
097:
098: /** Removes all associations from this function (optional operation).
099: *
100: * @see java.util.Map#clear()
101: */
102:
103: void clear();
104:
105: }
|