Examples of removeKey()


Examples of cern.colt.map.OpenIntObjectHashMap.removeKey()

           
            OpenIntObjectHashMap hsTierVertices = (OpenIntObjectHashMap) hs.getTiers().get(tierIndex);

            IVertex vertex = (IVertex) hsTierVertices.get(vertexTierKey);

            hsTierVertices.removeKey(vertexTierKey);
           
            if (LOGGER.isDebugEnabled())
            {
                LOGGER.debug("Vertex {} removed from tier #{} of HSS({}): {}",
                        new Object[] { vertex.getTripletValue(), tierIndex + 1, i, verticesTripletsToString(hsTierVertices) });
View Full Code Here

Examples of com.adito.core.CoreMessageResources.removeKey()

            toRemove.add(key);
          }
        }

        for (Iterator itr = toRemove.iterator(); itr.hasNext();) {
          resources.removeKey((String) itr.next());
        }
      }
    }

    extensionBundles.clear();
View Full Code Here

Examples of com.gs.collections.api.map.primitive.MutableByteBooleanMap.removeKey()

    public ImmutableByteBooleanMap newWithoutKey(byte key)
    {
        MutableByteBooleanMap map = new ByteBooleanHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableByteBooleanMap newWithoutAllKeys(ByteIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.api.map.primitive.MutableByteByteMap.removeKey()

    public ImmutableByteByteMap newWithoutKey(byte key)
    {
        MutableByteByteMap map = new ByteByteHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableByteByteMap newWithoutAllKeys(ByteIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.api.map.primitive.MutableByteCharMap.removeKey()

    public ImmutableByteCharMap newWithoutKey(byte key)
    {
        MutableByteCharMap map = new ByteCharHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableByteCharMap newWithoutAllKeys(ByteIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.api.map.primitive.MutableByteDoubleMap.removeKey()

    public ImmutableByteDoubleMap newWithoutKey(byte key)
    {
        MutableByteDoubleMap map = new ByteDoubleHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableByteDoubleMap newWithoutAllKeys(ByteIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.api.map.primitive.MutableByteFloatMap.removeKey()

    public ImmutableByteFloatMap newWithoutKey(byte key)
    {
        MutableByteFloatMap map = new ByteFloatHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableByteFloatMap newWithoutAllKeys(ByteIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.api.map.primitive.MutableByteIntMap.removeKey()

    public ImmutableByteIntMap newWithoutKey(byte key)
    {
        MutableByteIntMap map = new ByteIntHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableByteIntMap newWithoutAllKeys(ByteIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.api.map.primitive.MutableByteLongMap.removeKey()

    public ImmutableByteLongMap newWithoutKey(byte key)
    {
        MutableByteLongMap map = new ByteLongHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableByteLongMap newWithoutAllKeys(ByteIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.api.map.primitive.MutableByteShortMap.removeKey()

    public ImmutableByteShortMap newWithoutKey(byte key)
    {
        MutableByteShortMap map = new ByteShortHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableByteShortMap newWithoutAllKeys(ByteIterable keys)
    {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.