DayOfWeek get(TemporalField field) example
Description
DayOfWeek get(TemporalField field)
gets the
value of the specified field from this day-of-week 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.DayOfWeek;
import java.time.LocalDate;
import java.time.Month;
import java.time.temporal.ChronoField;
/*from w w w. j a va2 s . c o m*/
public class Main {
public static void main(String[] args) {
LocalDate localDate = LocalDate.of(2014, Month.JUNE, 21);
DayOfWeek dayOfWeek = DayOfWeek.from(localDate);
System.out.println(dayOfWeek.get(ChronoField.DAY_OF_WEEK));
}
}
The code above generates the following result.