Java 类com.esotericsoftware.kryo.util.IdentityMap 实例源码

项目:EsperDist    文件:Kryo.java   
/** Returns the internal map of original to copy objects when a copy method is used. This can be used after a copy to map old
 * objects to the copies, however it is cleared automatically by {@link #reset()} so this is only useful when
 * {@link #setAutoReset(boolean)} is false. */
public IdentityMap getOriginalToCopyMap () {
    return originalToCopy;
}
项目:JourneyPlanner    文件:Kryo.java   
/** Returns the internal map of original to copy objects when a copy method is used. This can be used after a copy to map old
 * objects to the copies, however it is cleared automatically by {@link #reset()} so this is only useful when
 * {@link #setAutoReset(boolean)} is false. */
public IdentityMap getOriginalToCopyMap () {
    return originalToCopy;
}