List of usage examples for java.time MonthDay getMonth
public Month getMonth()
From source file:Main.java
public static void main(String[] args) { MonthDay m = MonthDay.now(); Month n = m.getMonth(); System.out.println(n);/*www .ja v a 2s.c om*/ }