Toggle navigation
Home
java.util.Map to java.util.LinkedList
No. of Instances - 1
No. of Commits - 1
No. of Projects - {'speedment'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Jdk
Mapping:
Add or Remove Method invocation
Inject.class.getSimpleName()
to
value.getClass().getName()
clazz
to
value.getClass()
clazz
to
instance.getClass()
clazz
to
value.getClass().getName()
instances.get(n.getRepresentedType())
to
findIn(n.getRepresentedType(),instances)
Stream.of(m.getParameters()).map(p -> instances.get(p.getType())).toArray(Object[]::new)
to
Stream.of(m.getParameters()).map(p -> findIn(p.getType(),instances)).toArray(Object[]::new)
System.out.printf("%32s has been %s.",n.getRepresentedType().getSimpleName(),state.name())
to
System.out.printf("| %-66s %12s |%n",n.getRepresentedType().getSimpleName(),state.name())
unmodifiableMap(instances)
to
unmodifiableList(instances)
Wrap or Un-wrap
forEach
to
forEach
forEach
to
forEach