VOOZH about

URL: https://www.javacodegeeks.com/author/Mohamed-Sanaulla/page/6

⇱ Mohamed Sanaulla, Author at Java Code Geeks - Page 6 of 7


  • Core Java👁 Image
    Mohamed SanaullaMay 7th, 2013
    6 235

    A simple application of Lambda Expressions in Java 8

    I have been trying to fit in lambda expressions in the code I write and this simple example is a…

    Read More »
  • Core Java👁 Image
    Mohamed SanaullaApril 18th, 2013
    1 423

    Arrays.sort versus Arrays.parallelSort

    We all have used Arrays.sort to sort objects and primitive arrays. This API used merge sort OR Tim Sort underneath…

    Read More »
  • Core Java👁 Image
    Mohamed SanaullaApril 12th, 2013
    0 205

    Predicate and Consumer Interface in java.util.function package in Java 8

    In my previous post I wrote about Function interface which is part of java.util.package. I also mentioned about Predicate interface…

    Read More »
  • Core Java👁 Image
    Mohamed SanaullaApril 1st, 2013
    4 312

    Function interface – A functional interface in the java.util.function package in Java 8

    I had previously written about functional interfaces and their usage. If you are exploring the APIs to be part of…

    Read More »
  • Core Java👁 Image
    Mohamed SanaullaMarch 25th, 2013
    2 176

    Extracting the elements of the Java Collection- The Java 8 way

    We all have extensively used Collection classes like List, Map and their derived versions. And each time we used them…

    Read More »
  • Core Java👁 Image
    Mohamed SanaullaMarch 23rd, 2013
    0 383

    Introduction to Functional Interfaces – A concept recreated in Java 8

    Any java developer around the world would have used at least one of the following interfaces: java.lang.Runnable, java.awt.event.ActionListener, java.util.Comparator, java.util.concurrent.Callable.…

    Read More »
  • Core Java👁 Image
    Mohamed SanaullaMarch 21st, 2013
    5 152

    Introduction to Default Methods (Defender Methods) in Java 8

    We all know that interfaces in Java contain only method declarations and no implementations and any non-abstract class implementing the…

    Read More »
  • Core Java👁 Image
    Mohamed SanaullaMarch 13th, 2013
    0 146

    Using Lambda Expression to sort a List in Java 8 using Netbeans Lambda Support

    As part of JSR 335 Lambda expressions are being introduced to the Java language from Java 8 onwards and this…

    Read More »
  • Core Java👁 Image
    Mohamed SanaullaSeptember 25th, 2012
    2 218

    Chain Of Responsibility Design Pattern Example

    Avoid coupling the sender of a request to the receiver by giving more than one object a chance to handle…

    Read More »
  • First
  • ...
  • «
  • 3
  • 4
  • 5
  • 6
  • 7
  • »
Back to top button
Close