当前位置: 首页>>代码示例>>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;未经允许,请勿转载。