VOOZH about

URL: https://www.javacodegeeks.com/author/fahd-shariff/page/4

⇱ Fahd Shariff, Author at Java Code Geeks - Page 4 of 6


  • Core Java👁 Image
    Fahd ShariffFebruary 26th, 2018
    0 118

    Java 9: Enhancements to the Process API

    Java 9 brings various improvements to the Process API, used for controlling and managing operating system processes. Getting information about…

    Read More »
  • Core Java👁 Image
    Fahd ShariffDecember 28th, 2017
    1 103

    Java 9: Enhancements to Optional

    Previously, I wrote about the Optional class that was introduced in Java 8 to model potentially absent values and reduce…

    Read More »
  • Core Java👁 Image
    Fahd ShariffDecember 28th, 2017
    0 84

    Java 9: Enhancements to the Stream API

    Java 9 adds 4 new methods to the Stream interface: 1. dropWhile The dropWhile method is similar to the skip…

    Read More »
  • Core Java👁 Image
    Fahd ShariffDecember 28th, 2017
    0 68

    Java 9: JShell

    JShell is a new tool introduced in Java 9 that evaluates Java statements entered on the command line. It is…

    Read More »
  • Core Java👁 Image
    Fahd ShariffJune 28th, 2016
    0 2,704

    Java 8: CompletableFuture vs Parallel Stream

    This post shows how Java 8’s CompletableFuture compares with parallel streams when peforming asynchronous computations. We will use the following…

    Read More »
  • Core Java👁 Image
    Fahd ShariffJune 21st, 2016
    1 774

    Java 8: Default Method Resolution Rules

    With the introduction of default methods in Java 8, it is now possible for a class to inherit the same…

    Read More »
  • Core Java👁 Image
    Fahd ShariffJune 14th, 2016
    0 680

    Java 8: Converting Anonymous Classes to Lambda Expressions

    Refactoring anonymous classes (that implement one single method) to lambda expressions, makes your code more succint and readable. For example,…

    Read More »
  • Core Java👁 Image
    Fahd ShariffNovember 30th, 2015
    0 8,060

    Java 8 Streams API: Grouping and Partitioning a Stream

    This post shows how you can use the Collectors available in the Streams API to group elements of a stream…

    Read More »
  • Software Development👁 Image
    Fahd ShariffJuly 22nd, 2014
    1 2,703

    Converting XML to CSV using XSLT 1.0

    This post shows you how to convert a simple XML file to CSV using XSLT. Consider the following sample XML:…

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