BeginnersBook

  • Home
  • Java
    • Java OOPs
    • Java Collections
    • Java Examples
  • C
    • C Examples
  • C++
    • C++ Examples
  • DBMS
  • Computer Network
  • Python
    • Python Examples
  • More…
    • jQuery
    • Kotlin
    • WordPress
    • SEO
    • JSON
    • JSP
    • JSTL
    • Servlet
    • MongoDB
    • XML
    • Perl

Java 8 Stream Min and Max

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In this tutorial, we will learn how to find out the min and max value from a stream of comparable elements such as characters, strings,… [Read More]

Tags: Java8-Features

Java 8 Stream – allMatch() example

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In the last tutorials we have seen the anyMatch() and noneMatch() methods. In this guide, we will discuss stream allMatch() method, which returns true if… [Read More]

Tags: Java8-Features

Java 8 Stream – noneMatch() example

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In the last tutorial we discussed java stream anyMatch() method. The stream noneMatch() method works just opposite to the anyMatch() method, it returns true if… [Read More]

Tags: Java8-Features

Java 8 Stream – anyMatch() example

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In this tutorial we will see the example of Java 8 Stream anyMatch() method. This method returns true if any elements of the Stream matches… [Read More]

Tags: Java8-Features

Java 8 – Calculate days between two dates

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

We have already seen How to find the number of Days between two dates prior to Java 8. In this tutorial we will see how… [Read More]

Tags: Java8-Features

Java 8 Lambda Comparator example for Sorting List of Custom Objects

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

We have already seen how to sort an Arraylist of custom Objects without using lambda expression. In this tutorial we will see how to sort… [Read More]

Tags: Java8-Features

Java 8 features with examples

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

Java 8 got released on March 18, 2014. There are several new features that are introduced in this release. I have covered all the Java… [Read More]

Tags: Java8-Features

Java 8 – Arrays Parallel Sort with example

Last Updated: December 1, 2024 by Chaitanya Singh | Filed Under: java

Java 8 introduced a new method parallelSort() in the Arrays class of java.util package. This method is introduced to support the parallel sorting of array… [Read More]

Tags: Java8-Features

Java 8 Optional Class

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In Java 8, we have a newly introduced Optional class in java.util package. This class is introduced to avoid NullPointerException that we frequently encounters if… [Read More]

Tags: Java8-Features

Java 8 StringJoiner with example

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In java 8, a new class StringJoiner is introduced in the java.util package. Using this class we can join more than one strings with the… [Read More]

Tags: Java8-Features

Java 8 – Stream Collectors Class with examples

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

Collectors is a final class that extends the Object class. In this tutorial we will see the examples of Java Stream collectors class using lambda… [Read More]

Tags: Java8-Features

Java 8 forEach method with example

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In Java 8, we have a newly introduced forEach method to iterate over collections and Streams in Java. In this guide, we will learn how… [Read More]

Tags: Java8-Features

Java 8 – Filter a Map by keys and values

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In the previous tutorial we learned about Java Stream Filter. In this guide, we will see how to use Stream filter() method to filter a… [Read More]

Tags: Java8-Features

Java 8 – Filter null values from a Stream

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In this tutorial, we will see how to filter the null values from a Stream in Java. Example: A stream with null values In this… [Read More]

Tags: Java8-Features

Java 8 Stream Filter with examples

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In the previous tutorial, we learned about Java Stream. I would recommend you to read that guide before going through this tutorial. In this guide,… [Read More]

Tags: Java8-Features

  • 1
  • 2
  • Next Page »

Java Tutorial

Java Introduction

  • Java Index
  • Java Introduction
  • History of Java
  • Features of Java
  • C++ vs Java
  • JDK vs JRE vs JVM
  • JVM - Java Virtual Machine
  • First Java Program
  • Variables
  • Data Types
  • Operators

Java Flow Control

  • Java If-else
  • Java Switch-Case
  • Java For loop
  • Java while loop
  • Java do-while loop
  • Continue statement
  • break statement

Java Arrays

  • Java Arrays

OOPs Concepts

  • OOPs Concepts
  • Constructor
  • Java String
  • Static keyword
  • Inheritance
  • Types of inheritance
  • Aggregation
  • Association
  • Super Keyword
  • Method overloading
  • Method overriding
  • Overloading vs Overriding
  • Polymorphism
  • Types of polymorphism
  • Static and dynamic binding
  • Abstract class and methods
  • Interface
  • Abstract class vs interface
  • Encapsulation
  • Packages
  • Access modifiers
  • Garbage Collection
  • Inner classes
  • Static import
  • Static constructor

Java Exception Handling

  • Exception handling
  • Java try-catch
  • Java throw
  • Java throws
  • Checked and Unchecked Exceptions
  • Jav try catch finally
  • Exception Examples
  • Exception Propagation

Collections Framework

  • Collections in Java
  • Java ArrayList
  • Java LinkedList
  • Java Vector
  • Java HashSet
  • Java LinkedHashSet
  • Java TreeSet
  • Java HashMap
  • Java TreeMap
  • Java LinkedHashMap
  • Java Queue
  • Java PriorityQueue
  • Java Deque
  • Comparable interface
  • Comparator interface
  • Collections Interview Questions

MORE ...

  • Java Scanner Class
  • Java 8 Features
  • Java 9 Features
  • Java Conversion
  • Java Date
  • Java Multithreading
  • Java I/O
  • Java Serialization
  • Java Regex
  • Java AWT
  • Java Swing
  • Java Enum
  • Java Annotations
  • Java main method
  • Java Interview Q

Copyright © 2012 – 2025 BeginnersBook . Privacy Policy . Sitemap