El método isBefore() de la clase Year en Java se usa para verificar si este objeto YearMonth actual es anterior al YearMonth especificado como parámetro para este método.
Sintaxis :
public boolean isBefore(Year otherYearMonth)
Parámetro : Acepta un único parámetro otroMesAño con el que se va a comparar el objeto MesAño actual.
Valor devuelto : Devuelve un valor booleano True si el valor de este objeto YearMonth es anterior al valor del objeto YearMonth especificado como parámetro del método; de lo contrario, devuelve False.
Los siguientes programas ilustran el método YearMonth.isBefore() en Java:
Programa 1 :
// Program to illustrate the isBefore() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Create first Year object YearMonth yearMonth1 = YearMonth.of(2018, 3); // Create second Year object YearMonth yearMonth2 = YearMonth.of(1997, 4); // Check if this year-month object's value is // before the specified Year-month or not System.out.println(yearMonth1 .isBefore(yearMonth2)); } }
Producción:
false
Programa 2 :
// Program to illustrate the isBefore() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Create first Year object YearMonth yearMonth1 = YearMonth.of(1997, 3); // Create second Year object YearMonth yearMonth2 = YearMonth.of(2018, 4); // Check if this year-month object's value is // before the specified Year-month or not System.out.println(yearMonth1 .isBefore(yearMonth2)); } }
Producción:
true
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#isBefore-java.time.YearMonth-