mirror of
https://github.com/github/codeql.git
synced 2026-04-29 02:35:15 +02:00
Add automatically-generated stubs
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
// Generated automatically from org.apache.commons.collections4.Factory for testing purposes
|
||||
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
|
||||
public interface Factory<T>
|
||||
{
|
||||
T create();
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
// Generated automatically from org.apache.commons.collections4.Get for testing purposes
|
||||
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
public interface Get<K, V>
|
||||
{
|
||||
Collection<V> values();
|
||||
Set<K> keySet();
|
||||
Set<Map.Entry<K, V>> entrySet();
|
||||
V get(Object p0);
|
||||
V remove(Object p0);
|
||||
boolean containsKey(Object p0);
|
||||
boolean containsValue(Object p0);
|
||||
boolean isEmpty();
|
||||
int size();
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
// Generated automatically from org.apache.commons.collections4.IterableGet for testing purposes
|
||||
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
import org.apache.commons.collections4.Get;
|
||||
import org.apache.commons.collections4.MapIterator;
|
||||
|
||||
public interface IterableGet<K, V> extends Get<K, V>
|
||||
{
|
||||
MapIterator<K, V> mapIterator();
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
// Generated automatically from org.apache.commons.collections4.IterableMap for testing purposes
|
||||
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
import java.util.Map;
|
||||
import org.apache.commons.collections4.IterableGet;
|
||||
import org.apache.commons.collections4.Put;
|
||||
|
||||
public interface IterableMap<K, V> extends IterableGet<K, V>, Map<K, V>, Put<K, V>
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
// Generated automatically from org.apache.commons.collections4.IterableSortedMap for testing purposes
|
||||
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
import java.util.SortedMap;
|
||||
import org.apache.commons.collections4.OrderedMap;
|
||||
|
||||
public interface IterableSortedMap<K, V> extends OrderedMap<K, V>, SortedMap<K, V>
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
// Generated automatically from org.apache.commons.collections4.KeyValue for testing purposes
|
||||
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
|
||||
public interface KeyValue<K, V>
|
||||
{
|
||||
K getKey();
|
||||
V getValue();
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
// Generated automatically from org.apache.commons.collections4.MapIterator for testing purposes
|
||||
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
import java.util.Iterator;
|
||||
|
||||
public interface MapIterator<K, V> extends Iterator<K>
|
||||
{
|
||||
K getKey();
|
||||
K next();
|
||||
V getValue();
|
||||
V setValue(V p0);
|
||||
boolean hasNext();
|
||||
void remove();
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
// Generated automatically from org.apache.commons.collections4.MapUtils for testing purposes
|
||||
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
import java.io.PrintStream;
|
||||
import java.util.Map;
|
||||
import java.util.Properties;
|
||||
import java.util.ResourceBundle;
|
||||
import java.util.SortedMap;
|
||||
import org.apache.commons.collections4.Factory;
|
||||
import org.apache.commons.collections4.IterableMap;
|
||||
import org.apache.commons.collections4.IterableSortedMap;
|
||||
import org.apache.commons.collections4.MultiMap;
|
||||
import org.apache.commons.collections4.OrderedMap;
|
||||
import org.apache.commons.collections4.Predicate;
|
||||
import org.apache.commons.collections4.Transformer;
|
||||
import org.apache.commons.collections4.map.MultiValueMap;
|
||||
|
||||
public class MapUtils
|
||||
{
|
||||
protected MapUtils() {}
|
||||
public static <K, V, C> MultiValueMap<K, V> multiValueMap(Map<K, C> p0, Class<C> p1){ return null; }
|
||||
public static <K, V, C> MultiValueMap<K, V> multiValueMap(Map<K, C> p0, Factory<C> p1){ return null; }
|
||||
public static <K, V, E> void populateMap(Map<K, V> p0, Iterable<? extends E> p1, Transformer<E, K> p2, Transformer<E, V> p3){}
|
||||
public static <K, V, E> void populateMap(MultiMap<K, V> p0, Iterable<? extends E> p1, Transformer<E, K> p2, Transformer<E, V> p3){}
|
||||
public static <K, V> IterableMap<K, V> fixedSizeMap(Map<K, V> p0){ return null; }
|
||||
public static <K, V> IterableMap<K, V> iterableMap(Map<K, V> p0){ return null; }
|
||||
public static <K, V> IterableMap<K, V> lazyMap(Map<K, V> p0, Factory<? extends V> p1){ return null; }
|
||||
public static <K, V> IterableMap<K, V> lazyMap(Map<K, V> p0, Transformer<? super K, ? extends V> p1){ return null; }
|
||||
public static <K, V> IterableMap<K, V> predicatedMap(Map<K, V> p0, Predicate<? super K> p1, Predicate<? super V> p2){ return null; }
|
||||
public static <K, V> IterableMap<K, V> transformedMap(Map<K, V> p0, Transformer<? super K, ? extends K> p1, Transformer<? super V, ? extends V> p2){ return null; }
|
||||
public static <K, V> IterableSortedMap<K, V> iterableSortedMap(SortedMap<K, V> p0){ return null; }
|
||||
public static <K, V> Map<K, V> emptyIfNull(Map<K, V> p0){ return null; }
|
||||
public static <K, V> Map<K, V> putAll(Map<K, V> p0, Object[] p1){ return null; }
|
||||
public static <K, V> Map<K, V> synchronizedMap(Map<K, V> p0){ return null; }
|
||||
public static <K, V> Map<K, V> unmodifiableMap(Map<? extends K, ? extends V> p0){ return null; }
|
||||
public static <K, V> Map<V, K> invertMap(Map<K, V> p0){ return null; }
|
||||
public static <K, V> MultiValueMap<K, V> multiValueMap(Map<K, ? super Collection<V>> p0){ return null; }
|
||||
public static <K, V> OrderedMap<K, V> orderedMap(Map<K, V> p0){ return null; }
|
||||
public static <K, V> Properties toProperties(Map<K, V> p0){ return null; }
|
||||
public static <K, V> SortedMap<K, V> fixedSizeSortedMap(SortedMap<K, V> p0){ return null; }
|
||||
public static <K, V> SortedMap<K, V> lazySortedMap(SortedMap<K, V> p0, Factory<? extends V> p1){ return null; }
|
||||
public static <K, V> SortedMap<K, V> lazySortedMap(SortedMap<K, V> p0, Transformer<? super K, ? extends V> p1){ return null; }
|
||||
public static <K, V> SortedMap<K, V> predicatedSortedMap(SortedMap<K, V> p0, Predicate<? super K> p1, Predicate<? super V> p2){ return null; }
|
||||
public static <K, V> SortedMap<K, V> synchronizedSortedMap(SortedMap<K, V> p0){ return null; }
|
||||
public static <K, V> SortedMap<K, V> transformedSortedMap(SortedMap<K, V> p0, Transformer<? super K, ? extends K> p1, Transformer<? super V, ? extends V> p2){ return null; }
|
||||
public static <K, V> SortedMap<K, V> unmodifiableSortedMap(SortedMap<K, ? extends V> p0){ return null; }
|
||||
public static <K, V> V getObject(Map<? super K, V> p0, K p1){ return null; }
|
||||
public static <K, V> V getObject(Map<K, V> p0, K p1, V p2){ return null; }
|
||||
public static <K, V> void populateMap(Map<K, V> p0, Iterable<? extends V> p1, Transformer<V, K> p2){}
|
||||
public static <K, V> void populateMap(MultiMap<K, V> p0, Iterable<? extends V> p1, Transformer<V, K> p2){}
|
||||
public static <K> Boolean getBoolean(Map<? super K, ?> p0, K p1){ return null; }
|
||||
public static <K> Boolean getBoolean(Map<? super K, ?> p0, K p1, Boolean p2){ return null; }
|
||||
public static <K> Byte getByte(Map<? super K, ?> p0, K p1){ return null; }
|
||||
public static <K> Byte getByte(Map<? super K, ?> p0, K p1, Byte p2){ return null; }
|
||||
public static <K> Double getDouble(Map<? super K, ?> p0, K p1){ return null; }
|
||||
public static <K> Double getDouble(Map<? super K, ?> p0, K p1, Double p2){ return null; }
|
||||
public static <K> Float getFloat(Map<? super K, ?> p0, K p1){ return null; }
|
||||
public static <K> Float getFloat(Map<? super K, ?> p0, K p1, Float p2){ return null; }
|
||||
public static <K> Integer getInteger(Map<? super K, ?> p0, K p1){ return null; }
|
||||
public static <K> Integer getInteger(Map<? super K, ?> p0, K p1, Integer p2){ return null; }
|
||||
public static <K> Long getLong(Map<? super K, ?> p0, K p1){ return null; }
|
||||
public static <K> Long getLong(Map<? super K, ?> p0, K p1, Long p2){ return null; }
|
||||
public static <K> Map<?, ?> getMap(Map<? super K, ?> p0, K p1){ return null; }
|
||||
public static <K> Map<?, ?> getMap(Map<? super K, ?> p0, K p1, Map<?, ?> p2){ return null; }
|
||||
public static <K> Number getNumber(Map<? super K, ?> p0, K p1){ return null; }
|
||||
public static <K> Number getNumber(Map<? super K, ?> p0, K p1, Number p2){ return null; }
|
||||
public static <K> Short getShort(Map<? super K, ?> p0, K p1){ return null; }
|
||||
public static <K> Short getShort(Map<? super K, ?> p0, K p1, Short p2){ return null; }
|
||||
public static <K> String getString(Map<? super K, ?> p0, K p1){ return null; }
|
||||
public static <K> String getString(Map<? super K, ?> p0, K p1, String p2){ return null; }
|
||||
public static <K> boolean getBooleanValue(Map<? super K, ?> p0, K p1){ return false; }
|
||||
public static <K> boolean getBooleanValue(Map<? super K, ?> p0, K p1, boolean p2){ return false; }
|
||||
public static <K> byte getByteValue(Map<? super K, ?> p0, K p1){ return 0; }
|
||||
public static <K> byte getByteValue(Map<? super K, ?> p0, K p1, byte p2){ return 0; }
|
||||
public static <K> double getDoubleValue(Map<? super K, ?> p0, K p1){ return 0; }
|
||||
public static <K> double getDoubleValue(Map<? super K, ?> p0, K p1, double p2){ return 0; }
|
||||
public static <K> float getFloatValue(Map<? super K, ?> p0, K p1){ return 0; }
|
||||
public static <K> float getFloatValue(Map<? super K, ?> p0, K p1, float p2){ return 0; }
|
||||
public static <K> int getIntValue(Map<? super K, ?> p0, K p1){ return 0; }
|
||||
public static <K> int getIntValue(Map<? super K, ?> p0, K p1, int p2){ return 0; }
|
||||
public static <K> long getLongValue(Map<? super K, ?> p0, K p1){ return 0; }
|
||||
public static <K> long getLongValue(Map<? super K, ?> p0, K p1, long p2){ return 0; }
|
||||
public static <K> short getShortValue(Map<? super K, ?> p0, K p1){ return 0; }
|
||||
public static <K> short getShortValue(Map<? super K, ?> p0, K p1, short p2){ return 0; }
|
||||
public static <K> void safeAddToMap(Map<? super K, Object> p0, K p1, Object p2){}
|
||||
public static Map<String, Object> toMap(ResourceBundle p0){ return null; }
|
||||
public static SortedMap EMPTY_SORTED_MAP = null;
|
||||
public static boolean isEmpty(Map<?, ?> p0){ return false; }
|
||||
public static boolean isNotEmpty(Map<?, ?> p0){ return false; }
|
||||
public static int size(Map<?, ?> p0){ return 0; }
|
||||
public static void debugPrint(PrintStream p0, Object p1, Map<?, ?> p2){}
|
||||
public static void verbosePrint(PrintStream p0, Object p1, Map<?, ?> p2){}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
// Generated automatically from org.apache.commons.collections4.MultiMap for testing purposes
|
||||
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
import java.util.Collection;
|
||||
import org.apache.commons.collections4.IterableMap;
|
||||
|
||||
public interface MultiMap<K, V> extends IterableMap<K, Object>
|
||||
{
|
||||
Collection<Object> values();
|
||||
Object get(Object p0);
|
||||
Object put(K p0, Object p1);
|
||||
Object remove(Object p0);
|
||||
boolean containsValue(Object p0);
|
||||
boolean removeMapping(K p0, V p1);
|
||||
int size();
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
// Generated automatically from org.apache.commons.collections4.OrderedIterator for testing purposes
|
||||
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
import java.util.Iterator;
|
||||
|
||||
public interface OrderedIterator<E> extends Iterator<E>
|
||||
{
|
||||
E previous();
|
||||
boolean hasPrevious();
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
// Generated automatically from org.apache.commons.collections4.OrderedMap for testing purposes
|
||||
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
import org.apache.commons.collections4.IterableMap;
|
||||
import org.apache.commons.collections4.OrderedMapIterator;
|
||||
|
||||
public interface OrderedMap<K, V> extends IterableMap<K, V>
|
||||
{
|
||||
K firstKey();
|
||||
K lastKey();
|
||||
K nextKey(K p0);
|
||||
K previousKey(K p0);
|
||||
OrderedMapIterator<K, V> mapIterator();
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
// Generated automatically from org.apache.commons.collections4.OrderedMapIterator for testing purposes
|
||||
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
import org.apache.commons.collections4.MapIterator;
|
||||
import org.apache.commons.collections4.OrderedIterator;
|
||||
|
||||
public interface OrderedMapIterator<K, V> extends MapIterator<K, V>, OrderedIterator<K>
|
||||
{
|
||||
K previous();
|
||||
boolean hasPrevious();
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// Generated automatically from org.apache.commons.collections4.Predicate for testing purposes
|
||||
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
|
||||
public interface Predicate<T>
|
||||
{
|
||||
boolean evaluate(T p0);
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
// Generated automatically from org.apache.commons.collections4.Put for testing purposes
|
||||
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
public interface Put<K, V>
|
||||
{
|
||||
Object put(K p0, V p1);
|
||||
void clear();
|
||||
void putAll(Map<? extends K, ? extends V> p0);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// Generated automatically from org.apache.commons.collections4.Transformer for testing purposes
|
||||
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
|
||||
public interface Transformer<I, O>
|
||||
{
|
||||
O transform(I p0);
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// Generated automatically from org.apache.commons.collections4.Unmodifiable for testing purposes
|
||||
|
||||
package org.apache.commons.collections4;
|
||||
|
||||
|
||||
public interface Unmodifiable
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
// Generated automatically from org.apache.commons.collections4.keyvalue.AbstractKeyValue for testing purposes
|
||||
|
||||
package org.apache.commons.collections4.keyvalue;
|
||||
|
||||
import org.apache.commons.collections4.KeyValue;
|
||||
|
||||
abstract public class AbstractKeyValue<K, V> implements KeyValue<K, V>
|
||||
{
|
||||
protected AbstractKeyValue() {}
|
||||
protected AbstractKeyValue(K p0, V p1){}
|
||||
protected K setKey(K p0){ return null; }
|
||||
protected V setValue(V p0){ return null; }
|
||||
public K getKey(){ return null; }
|
||||
public String toString(){ return null; }
|
||||
public V getValue(){ return null; }
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
// Generated automatically from org.apache.commons.collections4.keyvalue.AbstractMapEntry for testing purposes
|
||||
|
||||
package org.apache.commons.collections4.keyvalue;
|
||||
|
||||
import java.util.Map;
|
||||
import org.apache.commons.collections4.keyvalue.AbstractKeyValue;
|
||||
|
||||
abstract public class AbstractMapEntry<K, V> extends Map.Entry<K, V> implements Map.Entry<K, V>
|
||||
{
|
||||
protected AbstractMapEntry() {}
|
||||
protected AbstractMapEntry(K p0, V p1){}
|
||||
public V setValue(V p0){ return null; }
|
||||
public boolean equals(Object p0){ return false; }
|
||||
public int hashCode(){ return 0; }
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
// Generated automatically from org.apache.commons.collections4.keyvalue.AbstractMapEntryDecorator for testing purposes
|
||||
|
||||
package org.apache.commons.collections4.keyvalue;
|
||||
|
||||
import java.util.Map;
|
||||
import org.apache.commons.collections4.KeyValue;
|
||||
|
||||
abstract public class AbstractMapEntryDecorator<K, V> implements KeyValue<K, V>, Map.Entry<K, V>
|
||||
{
|
||||
protected AbstractMapEntryDecorator() {}
|
||||
protected Map.Entry<K, V> getMapEntry(){ return null; }
|
||||
public AbstractMapEntryDecorator(Map.Entry<K, V> p0){}
|
||||
public K getKey(){ return null; }
|
||||
public String toString(){ return null; }
|
||||
public V getValue(){ return null; }
|
||||
public V setValue(V p0){ return null; }
|
||||
public boolean equals(Object p0){ return false; }
|
||||
public int hashCode(){ return 0; }
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
// Generated automatically from org.apache.commons.collections4.keyvalue.DefaultKeyValue for testing purposes
|
||||
|
||||
package org.apache.commons.collections4.keyvalue;
|
||||
|
||||
import java.util.Map;
|
||||
import org.apache.commons.collections4.KeyValue;
|
||||
import org.apache.commons.collections4.keyvalue.AbstractKeyValue;
|
||||
|
||||
public class DefaultKeyValue<K, V> extends AbstractKeyValue<K, V>
|
||||
{
|
||||
public DefaultKeyValue(){}
|
||||
public DefaultKeyValue(K p0, V p1){}
|
||||
public DefaultKeyValue(KeyValue<? extends K, ? extends V> p0){}
|
||||
public DefaultKeyValue(Map.Entry<? extends K, ? extends V> p0){}
|
||||
public K setKey(K p0){ return null; }
|
||||
public Map.Entry<K, V> toMapEntry(){ return null; }
|
||||
public V setValue(V p0){ return null; }
|
||||
public boolean equals(Object p0){ return false; }
|
||||
public int hashCode(){ return 0; }
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
// Generated automatically from org.apache.commons.collections4.keyvalue.DefaultMapEntry for testing purposes
|
||||
|
||||
package org.apache.commons.collections4.keyvalue;
|
||||
|
||||
import java.util.Map;
|
||||
import org.apache.commons.collections4.KeyValue;
|
||||
import org.apache.commons.collections4.keyvalue.AbstractMapEntry;
|
||||
|
||||
public class DefaultMapEntry<K, V> extends AbstractMapEntry<K, V>
|
||||
{
|
||||
protected DefaultMapEntry() {}
|
||||
public DefaultMapEntry(K p0, V p1){}
|
||||
public DefaultMapEntry(KeyValue<? extends K, ? extends V> p0){}
|
||||
public DefaultMapEntry(Map.Entry<? extends K, ? extends V> p0){}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
// Generated automatically from org.apache.commons.collections4.keyvalue.TiedMapEntry for testing purposes
|
||||
|
||||
package org.apache.commons.collections4.keyvalue;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Map;
|
||||
import org.apache.commons.collections4.KeyValue;
|
||||
|
||||
public class TiedMapEntry<K, V> implements KeyValue<K, V>, Map.Entry<K, V>, Serializable
|
||||
{
|
||||
protected TiedMapEntry() {}
|
||||
public K getKey(){ return null; }
|
||||
public String toString(){ return null; }
|
||||
public TiedMapEntry(Map<K, V> p0, K p1){}
|
||||
public V getValue(){ return null; }
|
||||
public V setValue(V p0){ return null; }
|
||||
public boolean equals(Object p0){ return false; }
|
||||
public int hashCode(){ return 0; }
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
// Generated automatically from org.apache.commons.collections4.keyvalue.UnmodifiableMapEntry for testing purposes
|
||||
|
||||
package org.apache.commons.collections4.keyvalue;
|
||||
|
||||
import java.util.Map;
|
||||
import org.apache.commons.collections4.KeyValue;
|
||||
import org.apache.commons.collections4.Unmodifiable;
|
||||
import org.apache.commons.collections4.keyvalue.AbstractMapEntry;
|
||||
|
||||
public class UnmodifiableMapEntry<K, V> extends AbstractMapEntry<K, V> implements Unmodifiable
|
||||
{
|
||||
protected UnmodifiableMapEntry() {}
|
||||
public UnmodifiableMapEntry(K p0, V p1){}
|
||||
public UnmodifiableMapEntry(KeyValue<? extends K, ? extends V> p0){}
|
||||
public UnmodifiableMapEntry(Map.Entry<? extends K, ? extends V> p0){}
|
||||
public V setValue(V p0){ return null; }
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
// Generated automatically from org.apache.commons.collections4.map.AbstractIterableMap for testing purposes
|
||||
|
||||
package org.apache.commons.collections4.map;
|
||||
|
||||
import org.apache.commons.collections4.IterableMap;
|
||||
import org.apache.commons.collections4.MapIterator;
|
||||
|
||||
abstract public class AbstractIterableMap<K, V> implements IterableMap<K, V>
|
||||
{
|
||||
public AbstractIterableMap(){}
|
||||
public MapIterator<K, V> mapIterator(){ return null; }
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
// Generated automatically from org.apache.commons.collections4.map.AbstractMapDecorator for testing purposes
|
||||
|
||||
package org.apache.commons.collections4.map;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import org.apache.commons.collections4.map.AbstractIterableMap;
|
||||
|
||||
abstract public class AbstractMapDecorator<K, V> extends AbstractIterableMap<K, V>
|
||||
{
|
||||
Map<K, V> map = null;
|
||||
protected AbstractMapDecorator(){}
|
||||
protected AbstractMapDecorator(Map<K, V> p0){}
|
||||
protected Map<K, V> decorated(){ return null; }
|
||||
public Collection<V> values(){ return null; }
|
||||
public Set<K> keySet(){ return null; }
|
||||
public Set<Map.Entry<K, V>> entrySet(){ return null; }
|
||||
public String toString(){ return null; }
|
||||
public V get(Object p0){ return null; }
|
||||
public V put(K p0, V p1){ return null; }
|
||||
public V remove(Object p0){ return null; }
|
||||
public boolean containsKey(Object p0){ return false; }
|
||||
public boolean containsValue(Object p0){ return false; }
|
||||
public boolean equals(Object p0){ return false; }
|
||||
public boolean isEmpty(){ return false; }
|
||||
public int hashCode(){ return 0; }
|
||||
public int size(){ return 0; }
|
||||
public void clear(){}
|
||||
public void putAll(Map<? extends K, ? extends V> p0){}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
// Generated automatically from org.apache.commons.collections4.map.MultiValueMap for testing purposes
|
||||
|
||||
package org.apache.commons.collections4.map;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Collection;
|
||||
import java.util.Iterator;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import org.apache.commons.collections4.Factory;
|
||||
import org.apache.commons.collections4.MultiMap;
|
||||
import org.apache.commons.collections4.map.AbstractMapDecorator;
|
||||
|
||||
public class MultiValueMap<K, V> extends MultiMap<K, V> implements MultiMap<K, V>, Serializable
|
||||
{
|
||||
protected Collection<V> createCollection(int p0){ return null; }
|
||||
protected MultiValueMap(Map<K, ? super C> p0, Factory<C> p1){}
|
||||
public Collection<Object> values(){ return null; }
|
||||
public Collection<V> getCollection(Object p0){ return null; }
|
||||
public Iterator<Map.Entry<K, V>> iterator(){ return null; }
|
||||
public Iterator<V> iterator(Object p0){ return null; }
|
||||
public MultiValueMap(){}
|
||||
public Object put(K p0, Object p1){ return null; }
|
||||
public Set<Map.Entry<K, Object>> entrySet(){ return null; }
|
||||
public boolean containsValue(Object p0){ return false; }
|
||||
public boolean containsValue(Object p0, Object p1){ return false; }
|
||||
public boolean putAll(K p0, Collection<V> p1){ return false; }
|
||||
public boolean removeMapping(Object p0, Object p1){ return false; }
|
||||
public int size(Object p0){ return 0; }
|
||||
public int totalSize(){ return 0; }
|
||||
public static <K, V, C> MultiValueMap<K, V> multiValueMap(Map<K, ? super C> p0, Class<C> p1){ return null; }
|
||||
public static <K, V, C> MultiValueMap<K, V> multiValueMap(Map<K, ? super C> p0, Factory<C> p1){ return null; }
|
||||
public static <K, V> MultiValueMap<K, V> multiValueMap(Map<K, ? super Collection<V>> p0){ return null; }
|
||||
public void clear(){}
|
||||
public void putAll(Map<? extends K, ?> p0){}
|
||||
}
|
||||
Reference in New Issue
Block a user