Month of(int month)
creates an instance of Month from an int value.
of
has the following syntax.
public static Month of(int month)
The following example shows how to use of
.
import java.time.Month; /* w w w .j av a2 s . c o m*/ public class Main { public static void main(String[] args) { Month m = Month.of(1); System.out.println(m.getValue()); System.out.println(m.name()); System.out.println(m.ordinal()); } }
The code above generates the following result.