Java Date Time - LocalDateTime get(TemporalField field) example








LocalDateTime get(TemporalField field) gets the value of the specified field from this date-time 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.LocalDateTime;
import java.time.temporal.ChronoField;
/*from w ww.  j  av  a2  s . c  o  m*/
public class Main {
  public static void main(String[] args) {
    LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 01);
    
    System.out.println(a.get(ChronoField.DAY_OF_WEEK));
  }
}

The code above generates the following result.