Expore the TemporalAdjusters Class in Java

Expore the TemporalAdjusters Class in Java

TemporalAdjusters is a class in Java that is oriented towards bettering the options of Calendar. You can easily compute the dates of firstDayOfNextMonth, lastDayOfMonth, next Wednesday, etc.

TemporalAdjusters have many more methods defined and it is good to explore a few of them yourself. The API is available at https://docs.oracle.com/javase/8/docs/api/java/time/temporal/TemporalAdjusters.html.

import java.time.LocalDate;import java.time.DayOfWeek;import java.time.temporal.TemporalAdjusters;public class UnderstandingTemporalAdjusters {   public static void main(String args[]) {      UnderstandingTemporalAdjusters understandingTemporalAdjusters = new UnderstandingTemporalAdjusters();      understandingTemporalAdjusters.proceed();   }      public void proceed()    {      //Today      LocalDate today = LocalDate.now();      System.out.println("Today's date: " + today);      //Last day of current month      LocalDate lastDayOfMonth = today.with(TemporalAdjusters.lastDayOfMonth());      System.out.println("lastDayOfMonth : " + lastDayOfMonth);      //First day of next month      LocalDate firstDayOfNextMonth = today.with(TemporalAdjusters.firstDayOfNextMonth());      System.out.println("firstDayOfNextMonth : " + firstDayOfNextMonth);            //Next Wednesday      LocalDate nextWednesday = today.with(TemporalAdjusters.next(DayOfWeek.WEDNESDAY));      System.out.println("Next Wednesday is on: " + nextWednesday);         }}/*

Expected output:

[[email protected]]# java UnderstandingTemporalAdjustersToday's date: 2019-02-21lastDayOfMonth : 2019-02-28firstDayOfNextMonth : 2019-03-01Next Wednesday is on: 2019-02-27*/
Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several