

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 negated() method in Java
An immutable copy of a Period where all the Period elements are negated can be obtained using the method negated() in the Period class in Java. This method requires no parameters and it returns the Period elements after negating them.
A program that demonstrates this is given as follows
Example
import java.time.Period; import java.time.LocalDate; public class Demo { public static void main(String[] args) { String period = "P5Y7M15D"; Period p = Period.parse(period); System.out.println("The Period is: " + p); System.out.println("The Period with elements negated is: " + p.negated()); } }
Output
The Period is: P5Y7M15D The Period with elements negated is: P-5Y-7M-15D
Now let us understand the above program.
First the Period is displayed. Then an immutable copy of the Period where the elements are negated is obtained using the negated() method and this is displayed. A code snippet that demonstrates this is as follows:
String period = "P5Y7M15D"; Period p = Period.parse(period); System.out.println("The Period is: " + p); System.out.println("The Period with elements negated is: " + p.negated());
- Related Questions & Answers
- Duration negated() method in Java
- Period withMonths() method in Java
- Period withYears() method in Java
- Period withDays() method in Java
- Period ofDays() method in Java
- Period ofMonths() method in Java
- Period ofYears() method in Java
- Period ofWeeks() 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
- Period hashCode() method in Java
- Period getDays() method in Java
Advertisements