Package com.gs.collections.impl.map.mutable.primitive

Examples of com.gs.collections.impl.map.mutable.primitive.ShortByteHashMap


        }

        public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
        {
            int size = in.readInt();
            MutableShortByteMap deserializedMap = new ShortByteHashMap();

            for (int i = 0; i < size; i++)
            {
                deserializedMap.put(in.readShort(), in.readByte());
            }

            this.map = deserializedMap;
        }
View Full Code Here


    }

    public ImmutableShortByteMap select(ShortBytePredicate predicate)
    {
        return predicate.accept(this.key1, this.value1) ? ShortByteHashMap.newWithKeysValues(this.key1, this.value1).toImmutable()
                : new ShortByteHashMap().toImmutable();
    }
View Full Code Here

                : new ShortByteHashMap().toImmutable();
    }

    public ImmutableShortByteMap reject(ShortBytePredicate predicate)
    {
        return predicate.accept(this.key1, this.value1) ? new ShortByteHashMap().toImmutable()
                : ShortByteHashMap.newWithKeysValues(this.key1, this.value1).toImmutable();
    }
View Full Code Here

    private static final long serialVersionUID = 1L;
    private final MutableShortByteMap delegate;

    ImmutableShortByteHashMap(ShortByteMap delegate)
    {
        this.delegate = new ShortByteHashMap(delegate);
    }
View Full Code Here

        return this.delegate.asLazy();
    }

    public ImmutableShortByteMap newWithKeyValue(short key, byte value)
    {
        MutableShortByteMap map = new ShortByteHashMap(this.size() + 1);
        map.putAll(this);
        map.put(key, value);
        return map.toImmutable();
    }
View Full Code Here

        return map.toImmutable();
    }

    public ImmutableShortByteMap newWithoutKey(short key)
    {
        MutableShortByteMap map = new ShortByteHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }
View Full Code Here

        return map.toImmutable();
    }

    public ImmutableShortByteMap newWithoutAllKeys(ShortIterable keys)
    {
        MutableShortByteMap map = new ShortByteHashMap(this.size());
        map.putAll(this);
        ShortIterator iterator = keys.shortIterator();
        while (iterator.hasNext())
        {
            map.removeKey(iterator.next());
        }
        return map.toImmutable();
    }
View Full Code Here

TOP

Related Classes of com.gs.collections.impl.map.mutable.primitive.ShortByteHashMap

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.