DayOfWeek get(TemporalField field)
gets the
value of the specified field from this day-of-week as an int.
get
has the following syntax.
public int get(TemporalField field)
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; // w w w . ja v a 2 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.