Toggle navigation
Home
java.lang.Double to java.lang.Long
No. of Instances - 14
No. of Commits - 4
No. of Projects - {'alluxio', 'infinispan', 'flink'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: Jdk -> Jdk
Mapping:
Cascading Type Change (Similar)
List<Double>
to
List<Long>
Double
to
Long
Vertex<Long,Double>
to
Vertex<Long,Long>
Cascading Type Change (Different)
ArrayList<Double>
to
ArrayList<Long>
CacheSet<Double>
to
CacheSet<Map.Entry<Long,String>>
CacheSet<Double>
to
CacheSet<Map.Entry<Long,String>>
MapFunction<Long,Vertex<Long,Double>>
to
MapFunction<Long,Vertex<Long,Long>>
Rename Variable
doubles
to
longs
doubles
to
longs
doubles
to
longs
doubles
to
longs
Add or Remove Method invocation
o.mDouble
to
o.longValue()
Other
richEdge.getSrcVertexValue()
to
richEdge.getSrcVertexValue()
Update Anonymous class
{ @Override public Vertex<Long,Double> map( Long value) throws Exception { return new Vertex<Long,Double>(value,(double)value); } }
to
{ @Override public Vertex<Long,Long> map( Long value) throws Exception { return new Vertex<Long,Long>(value,value); } }