El método getMonthValue() de la clase OffsetDateTime en Java obtiene el campo del mes del año usando la enumeración Month.
Sintaxis:
public int getMonthValue()
Parámetro: Este método no acepta ningún parámetro.
Valor devuelto: Devuelve el mes del año que va del 1 al 12.
Los siguientes programas ilustran el método getMonthValue() :
Programa 1:
// Java program to demonstrate the getMonthValue() method import java.time.OffsetDateTime; public class GFG { public static void main(String[] args) { // parses a date OffsetDateTime date = OffsetDateTime.parse("2018-12-03T12:30:30+01:00"); // Prints the month of given date System.out.println("Month: " + date.getMonthValue()); } }
Programa 2 :
// Java program to demonstrate the getMonthValue() method import java.time.OffsetDateTime; public class GFG { public static void main(String[] args) { // parses a date OffsetDateTime date = OffsetDateTime.parse("2016-10-03T12:30:30+01:00"); // Prints the month of given date System.out.println("Month: " + date.getMonthValue()); } }
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html#getMonthValue–