Toggle navigation
Home
org.apache.ignite.lang.IgnitePredicate<org.apache.ignite.internal.fs.common.GridGgfsLogger.Entry<K, V>> to org.apache.ignite.lang.IgnitePredicate<Cache.Entry<K, V>>
No. of Instances - 19
No. of Commits - 1
No. of Projects - {'ignite'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Cascading Type Change (Similar)
IgnitePredicate<Entry<K,V>>
to
IgnitePredicate<Cache.Entry<K,V>>
Entry<K,V>
to
Cache.Entry<K,V>
Entry<K,V>
to
Cache.Entry<K,V>
IgnitePredicate<Entry<K,V>>
to
IgnitePredicate<Cache.Entry<K,V>>
IgnitePredicate<Entry<K,V>>
to
IgnitePredicate<Cache.Entry<K,V>>
Entry<K,V>
to
Cache.Entry<K,V>
IgnitePredicate<Entry<K,V>>
to
IgnitePredicate<Cache.Entry<K,V>>
Entry<K,V>
to
Cache.Entry<K,V>
IgnitePredicate<Entry<K,V>>
to
IgnitePredicate<Cache.Entry<K,V>>
Entry<K,V>
to
Cache.Entry<K,V>
Entry<K,V>
to
Cache.Entry<K,V>
Entry<K,V>
to
Cache.Entry<K,V>
Entry<K,V>
to
Cache.Entry<K,V>
Entry<K,V>
to
Cache.Entry<K,V>
Entry<K,V>
to
Cache.Entry<K,V>
IgnitePredicate<Entry<K,V>>
to
IgnitePredicate<Cache.Entry<K,V>>
Update Anonymous class
{ @Override public boolean apply( Entry<K,V> e){ K k=e.getKey(); V v=e.getValue(); assert entries != null; for ( Map.Entry<K,V> entry : entries) { if (k.equals(entry.getKey()) && v != null && v.equals(entry.getValue())) return true; } return false; } }
to
{ @Override public boolean apply( Cache.Entry<K,V> e){ K k=e.getKey(); V v=e.getValue(); assert entries != null; for ( Cache.Entry<K,V> entry : entries) { if (k.equals(entry.getKey()) && v != null && v.equals(entry.getValue())) return true; } return false; } }
{ @Override public boolean apply( Entry<K,V> e){ K k=e.getKey(); V v=e.getValue(); assert entries != null; for ( Map.Entry<K,V> entry : entries) { if (eq(k,entry.getKey()) && eq(v,entry.getValue())) return true; } return false; } }
to
{ @Override public boolean apply( Cache.Entry<K,V> e){ K k=e.getKey(); V v=e.getValue(); assert entries != null; for ( Cache.Entry<K,V> entry : entries) { if (eq(k,entry.getKey()) && eq(v,entry.getValue())) return true; } return false; } }