Java 8
-
Core Java
Does Java 8 Still Need LINQ? Or is it Better than LINQ?
LINQ was one of the best things that happened to the .NET software engineering ecosystem in a long time. With…
Read More » -
Core Java
Java8
Java8 isn’t scheduled for for release until March 2014, but early release versions have been available for a while. Some…
Read More » -
Core Java
instanceof operator and Visitor pattern replacement in Java 8
I had a dream where instanceof operator and downcasting were no longer needed but without clumsiness and verbosity of visitor…
Read More » -
Core Java
What’s new in Java 8 (Part II – What might come)
Disclaimer: I do not work for Oracle or represent Oracle in any way. This list of features is not official.…
Read More » -
Core Java
Deep dive into Optional class API in Java 8
We all as Java programmers been through the situation where in we invoke a method to get some value and…
Read More » -
Core Java
What’s new in Java 8 (Part I – JavaFX)
Disclaimer: I do not work for Oracle or represent Oracle in any way. This list of features is not official.…
Read More » -
Core Java
Optional in Java 8 cheat sheet
java.util.Optional<T> in Java 8 is a poor cousin of scala.Option[T] and Data.Maybe in Haskell. But this doesn’t mean it’s not…
Read More » -
Core Java
Almost named method arguments in JDK 8
Sometimes it would be really nice to have named method parameter in Java, this doesn’t look likely for a long…
Read More » -
Core Java
Testing Java 8 in 3 Easy Steps
tl;dr Use your CI Setup to test Java 8. The upcoming Java 8 release promises a bunch of new feature…
Read More »