- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
LocalDate query() Method in Java
The LocalDate object can be queried as required using the query method in the LocalDate class in Java. This method requires a single parameter i.e. the query to be invoked and it returns the result of the query.
A program that demonstrates this is given as follows −
Example
import java.time.*; import java.time.temporal.*; public class Demo { public static void main(String[] args) { LocalDate ld = LocalDate.parse("2019-02-14"); System.out.println("The LocalDate is: " + ld); String precision = ld.query(TemporalQueries.precision()).toString(); System.out.println("The Precision for the LocalDate is: "+ precision); } }
Output
The LocalDate is: 2019-02-14 The Precision for the LocalDate is: Days
Now let us understand the above program.
First the LocalDate object is displayed. Then the LocalDate object is queried using the query method and the query result is displayed. A code snippet that demonstrates this is as follows −
LocalDate ld = LocalDate.parse("2019-02-14"); System.out.println("The LocalDate is: " + ld); String precision = ld.query(TemporalQueries.precision()).toString(); System.out.println("The Precision for the LocalDate is: "+ precision);
- Related Articles
- LocalDate plusMonths() method in Java
- LocalDate plusWeeks() method in Java
- LocalDate plusDays() Method in Java
- LocalDate plusYears() method in Java
- LocalDate minusDays() Method in Java
- LocalDate minusWeeks() Method in Java
- LocalDate minusMonths() Method in Java
- LocalDate now() Method in Java
- LocalDate parse() method in Java
- LocalDate plus() method in Java
- LocalDate minus() method in Java
- LocalDate toString() method in Java
- LocalDate range() method in Java
- LocalDate withYear() method in Java
- LocalDate withMonth() method in Java

Advertisements