Saturday, November 15, 2025
HomeLanguagesJavaLocalDateTime isSupported() method in Java

LocalDateTime isSupported() method in Java

The isSupported() method of LocalDateTime class in Java checks if the specified unit or field is supported. 

Syntax:

public boolean isSupported(TemporalUnit unit)
           or
public boolean isSupported(TemporalField field)

Parameter: This method accepts a parameter field which specifies the field to check, null returns false or it accepts a parameter unit which specifies the unit to check, null returns false. 

Returns: The function returns true if the unit of field is supported on this date, false if not. 

Below programs illustrate the LocalDateTime.isSupported() method: 

Program 1: 

Java




// Program to illustrate the isSupported(TemporalUnit) method
 
import java.util.*;
import java.time.*;
import java.time.temporal.ChronoUnit;
 
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        LocalDateTime dt1
            = LocalDateTime.parse("2018-11-03T12:45:30");
 
        // Prints the date
        System.out.println(dt1);
 
        System.out.println(dt1.isSupported(ChronoUnit.DAYS));
    }
}


Output:

2018-11-03T12:45:30
true

Program 2: 

Java




// Program to illustrate the isSupported(TemporalField) method
 
import java.util.*;
import java.time.*;
import java.time.temporal.ChronoField;
 
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        LocalDateTime dt1
            = LocalDateTime.parse("2018-11-03T12:45:30");
 
        // Prints the date
        System.out.println(dt1);
 
        System.out.println(
            dt1
                .isSupported(ChronoField.DAY_OF_WEEK));
    }
}


Output:

2018-11-03T12:45:30
true

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#isSupported(java.time.temporal.TemporalField)

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11985 POSTS0 COMMENTS
Shaida Kate Naidoo
6890 POSTS0 COMMENTS
Ted Musemwa
7143 POSTS0 COMMENTS
Thapelo Manthata
6838 POSTS0 COMMENTS
Umr Jansen
6840 POSTS0 COMMENTS