OffsetDateTime getMonthValue() example
Description
OffsetDateTime getMonthValue()
gets the month-of-year field from 1 to 12.
Syntax
getMonthValue
has the following syntax.
public int getMonthValue()
Example
The following example shows how to use getMonthValue
.
import java.time.OffsetDateTime;
//from www. j a v a2s .c om
public class Main {
public static void main(String[] args) {
OffsetDateTime o = OffsetDateTime.now();
int l = o.getMonthValue();
System.out.println(l);
}
}
The code above generates the following result.