Month get(TemporalField field) example
Description
Month get(TemporalField field)
gets the value of the specified field
from this month-of-year as an int.
Syntax
get
has the following syntax.
public int get(TemporalField field)
Example
The following example shows how to use get
.
import java.time.LocalDate;
import java.time.Month;
import java.time.temporal.ChronoField;
// www. j ava 2 s .c o m
public class Main {
public static void main(String[] args) {
Month m = Month.from(LocalDate.now());
System.out.println(m.get(ChronoField.MONTH_OF_YEAR));
}
}
The code above generates the following result.