- 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
Period isNegative() method in Java
It can be checked if the days, months and years in the Period are negative or not using the isNegative() method in the Period class in Java. This method requires no parameters. Also, it returns true if any of the days, months and years in the Period are negative and false if all of the days, months and years in the Period are positive.
A program that demonstrates this is given as follows
Example
import java.time.Period; public class Demo { public static void main(String[] args) { String period = "P5Y9M4D"; Period p = Period.parse(period); System.out.println("The Period is: " + p); System.out.println("The days, months and years in the Period are negative? " + p.isNegative()); } }
Output
The Period is: P5Y9M4D The days, months and years in the Period are negative? false
Now let us understand the above program.
First the Period is displayed. Then it is checked if the days, months and years in the Period are negative or not using the isNegative() method and the return value is displayed. A code snippet that demonstrates this is as follows:
String period = "P5Y9M4D"; Period p = Period.parse(period); System.out.println("The Period is: " + p); System.out.println("The days, months and years in the Period are negative? " + p.isNegative());
- Related Articles
- Duration isNegative() method in Java
- Period ofDays() method in Java
- Period ofMonths() method in Java
- Period ofYears() method in Java
- Period ofWeeks() method in Java
- Period withMonths() method in Java
- Period withYears() method in Java
- Period withDays() method in Java
- Period plusDays() method in Java
- Period equals() method in Java
- Period plusMonths() method in Java
- Period plusYears() method in Java
- Period minusDays() method in Java
- Period minusMonths() method in Java
- Period minusYears() method in Java

Advertisements