LocalDate getDayOfMonth()
gets the day-of-month field.
This method returns the primitive int value for the day-of-month.
getDayOfMonth
has the following syntax.
public int getDayOfMonth()
The following example shows how to use getDayOfMonth
.
import java.time.LocalDate; public class Main { public static void main(String[] args) { LocalDate a = LocalDate.of(2014, 6, 30); System.out.println(a.getDayOfMonth()); } }
The code above generates the following result.