Sunday, February 15, 2026
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

1 COMMENT

Most Popular

Dominic
32505 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6880 POSTS0 COMMENTS
Nicole Veronica
12003 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12097 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6966 POSTS0 COMMENTS
Umr Jansen
6954 POSTS0 COMMENTS