
Java 8 – Types of interface
In this article, we will discuss different types of interface starting from Java 1.0 till Java 1.8 version. 1. interface – before Java 1.8 version Read More
In this article, we will discuss different types of interface starting from Java 1.0 till Java 1.8 version. 1. interface – before Java 1.8 version Read More
In this article, we will discuss how to sort list using Java 8 Comparator’s default method – reversed() which returns a comparator for sorting in Read More
In this article, we will discuss how to sort TreeSet elements in descending order using Java 8 Stream API Before proceeding with this sorting examples understand Read More
In this article, we will discuss how to sort LinkedHashSet elements in ascending & descending order using Java 8 Before proceeding with this sorting examples understand Read More
In this article, we will discuss Stream’s flatMapToDouble() method in detail with examples and explanation 1. Stream flatMapToDouble() method : This Stream method is an Read More
In this article, we will discuss one of the alternatives for Lambda Expression i.e.; Method references and Constructor references Lambda expression basically provides some functionality Read More
In this article, we will discuss BinaryOperator Functional Interface which is sub-interface of BiFunction Functional Interface where, BiFunction Functional Interface – accepts 2-input arguments and Read More
In this article, we will discuss UnaryOperator Functional Interface which is sub-interface of Function Functional Interface where, Function Functional Interface – accepts 1 input argument Read More
In this article, we will discuss different variation of pre-defined Supplier Functional Interface available for primitive data-types like int, long, double, boolean, etc. in Java Read More
In this article, we will discuss different variation of pre-defined Consumer Functional Interface available for primitive data-types like int, long, double, etc. in Java 1.8 Read More
In this article, we will discuss different variation of pre-defined BiFunction Functional Interface available for primitive data-types like int, long, double, etc. in Java 1.8 Read More
In this article, we will discuss different variation of pre-defined Function Functional Interface available for primitive data-types like int, long, double, etc. in Java 1.8 Read More
In this article, we will discuss different variation of pre-defined Predicate available for primitive data-types like int, long, double, etc. in Java 1.8 version Predicate Read More
In this article, we will discuss pre-defined Functional Interface in Java 1.8 version for performing operation (processing) based on 2 input arguments passed but it Read More
In this article, we will discuss pre-defined Functional Interface in Java 1.8 version for performing operation based on 2 input arguments and returning results after Read More
In this article, we will discuss pre-defined Functional Interface in Java 1.8 version for conditional checks which accepts 2 input arguments for evaluation i.e.; BiPredicate Functional Interface Read More
In this article, we will discuss pre-defined Functional Interface in Java 1.8 version which performs some operation (processing) and returns value after processing but doesn’t Read More
In this article, we will discuss pre-defined Functional Interface in Java 1.8 version for performing operation (processing) based on input argument but it won’t return Read More
In this article, we will discuss one of the widely used pre-defined Functional Interface in Java 1.8 version for conditional checks i.e.; Predicate Functional Interface Read More
In this article, we will discuss about new features introduced in Java 1.8 version i.e.; Functional Interface Q) What is Functional Interface ? An interface Read More