當前位置: 首頁>>代碼示例>>Java>>正文


Java TIntObjectMap.get方法代碼示例

本文整理匯總了Java中gnu.trove.map.TIntObjectMap.get方法的典型用法代碼示例。如果您正苦於以下問題:Java TIntObjectMap.get方法的具體用法?Java TIntObjectMap.get怎麽用?Java TIntObjectMap.get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在gnu.trove.map.TIntObjectMap的用法示例。


在下文中一共展示了TIntObjectMap.get方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: injectListener

import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
@SuppressWarnings("unchecked")
private void injectListener(int version) throws NoSuchFieldException, IllegalAccessException, NoSuchMethodException {

	Field protocolsField = Protocol.LOGIN.TO_SERVER.getClass().getDeclaredField("protocols");
	protocolsField.setAccessible(true);
	TIntObjectMap<?> protocols = (TIntObjectMap)protocolsField.get(Protocol.LOGIN.TO_SERVER);

	Object protocolData = protocols.get(version);
	Field packetMapField = protocolData.getClass().getDeclaredField("packetMap");
	Field packetConstructorsField = protocolData.getClass().getDeclaredField("packetConstructors");
	packetMapField.setAccessible(true);
	packetConstructorsField.setAccessible(true);
	TObjectIntMap packetMap =  (TObjectIntMap)packetMapField.get(protocolData);
	TIntObjectMap packetConstructors =  (TIntObjectMap)packetConstructorsField.get(protocolData);

	packetMap.remove(EncryptionResponse.class);
	packetConstructors.remove(0x01);
	packetMap.put( EncryptionResponsePacket.class, 0x01);
	packetConstructors.put( 0x01, EncryptionResponsePacket.class.getDeclaredConstructor() );

	packetMapField.set(protocolData, packetMap);
	packetConstructorsField.set(protocolData, packetConstructors);
	protocolsField.set(Protocol.LOGIN.TO_SERVER, protocols);
}
 
開發者ID:frash23,項目名稱:onflie,代碼行數:25,代碼來源:Onflie.java

示例2: createMesh

import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
public void createMesh(List<Mesher> meshers, JmeResourceManager resourceManager) {
	Realm realm = chunk.getRealm();
	
	TIntObjectMap<Mesh> meshes = new TIntObjectHashMap<>();
	
	for (Mesher mesher : meshers) {
		meshes.putAll(mesher.buildMeshes(chunk));
	}
	
	geometries.clear();
	
	for (int key : meshes.keys()) {
		Block block = realm.getCosmos().getBlocks().get(key);
		
		Geometry geometry = new Geometry(chunk.toString() + ":" + block.getName(), meshes.get(key));
		geometry.setMaterial(resourceManager.getMaterial(block));
		geometry.setQueueBucket(Bucket.Transparent);
		
		geometries.add(geometry);
	}
}
 
開發者ID:quadracoatl,項目名稱:quadracoatl,代碼行數:22,代碼來源:ChunkSpatial.java

示例3: encodeOther

import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
private static mt_other encodeOther(TIntObjectMap<metric_value> t_other, int timestampsSize) {
    LOG.log(Level.FINEST, "encoding {0}", TDecorators.wrap(t_other));
    metric_value[] values = new metric_value[timestampsSize];
    int values_len = 0;
    for (int i = 0; i < values.length; ++i) {
        metric_value mv = t_other.get(i);
        if (mv != null)
            values[values_len++] = mv;
    }

    mt_other result = new mt_other();
    result.presence = createPresenceBitset(t_other.keySet(), timestampsSize);
    result.values = Arrays.copyOf(values, values_len);

    return result;
}
 
開發者ID:groupon,項目名稱:monsoon,代碼行數:17,代碼來源:MetricTable.java

示例4: equals

import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
/** {@inheritDoc} */
public boolean equals( Object other ) {
    if ( ! ( other instanceof TIntObjectMap ) ) {
        return false;
    }
    TIntObjectMap that = ( TIntObjectMap ) other;
    if ( that.size() != this.size() ) {
        return false;
    }
    try {
        TIntObjectIterator iter = this.iterator();
        while ( iter.hasNext() ) {
            iter.advance();
            int key = iter.key();
            Object value = iter.value();
            if ( value == null ) {
                if ( !( that.get( key ) == null && that.containsKey( key ) ) ) {
                    return false;
                }
            } else {
                if ( !value.equals( that.get( key ) ) ) {
                    return false;
                }
            }
        }
    } catch ( ClassCastException ex ) {
        // unused.
    }
    return true;
}
 
開發者ID:JianpingZeng,項目名稱:xcc,代碼行數:31,代碼來源:TIntObjectHashMap.java

示例5: equals

import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
public boolean equals( Object other ) {
    if ( ! ( other instanceof TIntObjectMap ) ) {
        return false;
    }
    TIntObjectMap that = ( TIntObjectMap ) other;
    if ( that.size() != this.size() ) {
        return false;
    }
    try {
        TIntObjectIterator iter = this.iterator();
        while ( iter.hasNext() ) {
            iter.advance();
            int key = iter.key();
            Object value = iter.value();
            if ( value == null ) {
                if ( !( that.get( key ) == null && that.containsKey( key ) ) ) {
                    return false;
                }
            } else {
                if ( !value.equals( that.get( key ) ) ) {
                    return false;
                }
            }
        }
    } catch ( ClassCastException ex ) {
        // unused.
    }
    return true;
}
 
開發者ID:funkemunky,項目名稱:HCFCore,代碼行數:30,代碼來源:TIntObjectHashMap.java

示例6: getBuilder

import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
protected MeshBuilder getBuilder(TIntObjectMap<MeshBuilder> builders, Block block) {
	MeshBuilder builder = builders.get(block.getId());
	
	if (builder == null) {
		builder = createMeshBuilder(block);
		builders.put(block.getId(), builder);
	}
	
	return builder;
}
 
開發者ID:quadracoatl,項目名稱:quadracoatl,代碼行數:11,代碼來源:AbstractMesher.java

示例7: equals

import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
/** {@inheritDoc} */
@Override
@SuppressWarnings("rawtypes")
public boolean equals( Object other ) {
    if ( ! ( other instanceof TIntObjectMap ) ) {
        return false;
    }
    TIntObjectMap that = ( TIntObjectMap ) other;
    if ( that.size() != this.size() ) {
        return false;
    }
    try {
        TIntObjectIterator iter = this.iterator();
        while ( iter.hasNext() ) {
            iter.advance();
            int key = iter.key();
            Object value = iter.value();
            if ( value == null ) {
                if ( !( that.get( key ) == null && that.containsKey( key ) ) ) {
                    return false;
                }
            } else {
                if ( !value.equals( that.get( key ) ) ) {
                    return false;
                }
            }
        }
    } catch ( ClassCastException ex ) {
        // unused.
    }
    return true;
}
 
開發者ID:palantir,項目名稱:trove-3.0.3,代碼行數:33,代碼來源:TIntObjectHashMap.java

示例8: encodeHist

import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
private static mt_hist encodeHist(TIntObjectMap<histogram> t_hist, int timestampsSize) {
    LOG.log(Level.FINEST, "encoding {0}", TDecorators.wrap(t_hist));
    histogram values[] = new histogram[timestampsSize];
    int values_len = 0;
    for (int i = 0; i < values.length; ++i) {
        if (t_hist.containsKey(i))
            values[values_len++] = t_hist.get(i);
    }

    mt_hist result = new mt_hist();
    result.presence = createPresenceBitset(t_hist.keySet(), timestampsSize);
    result.values = Arrays.copyOf(values, values_len);

    return result;
}
 
開發者ID:groupon,項目名稱:monsoon,代碼行數:16,代碼來源:MetricTable.java


注:本文中的gnu.trove.map.TIntObjectMap.get方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。