LocalDate

LocalDate Class

The LocalDate class represents a date (year, month, and day) without a time or time zone. It provides methods for creating, manipulating, and comparing date values.

var localdate = LocalDate.of(2023, 10, 24); // LDATE 2023-10-24

Static Methods

now()

  • Returns the current date.

  • Example Usage:

    var currentDate = LocalDate.now();

parse(text: String)

  • Parses the input text to create a LocalDate instance.

  • Example Usage:

    var parsedDate = LocalDate.parse("2023-10-24");

of(year: Integer, month: Integer, dayOfMonth: Integer)

  • Creates a LocalDate instance with the specified year, month, and day values.

  • Example Usage:

    var customDate = LocalDate.of(2023, 10, 24);

ofYearDay(year: Integer, dayOfYear: Integer)

  • Creates a LocalDate instance based on the year and day of the year.

  • Example Usage:

ofEpochDay(epochDay: Long)

  • Creates a LocalDate instance based on the number of days since the epoch (January 1, 1970).

  • Example Usage:


Getter Methods

getYear()

  • Gets the year field.

  • Returns the year as an int value.

  • Example Usage:

getMonthValue()

  • Gets the month-of-year field from 1 to 12.

  • Returns the month as an int from 1 to 12.

  • Example Usage:

getDayOfMonth()

  • Gets the day-of-month field.

  • Returns the day-of-month as an int from 1 to 31.

  • Example Usage:

getDayOfYear()

  • Gets the day-of-year field.

  • Returns the day-of-year as an int from 1 to 365 (or 366 in a leap year).

  • Example Usage:


Date Manipulation Methods

minusYears(yearsToSubtract: Long)

  • Returns a new LocalDate with the specified number of years subtracted.

  • Example Usage:

minusMonths(monthsToSubtract: Long)

  • Returns a new LocalDate with the specified number of months subtracted.

  • Example Usage:

minusWeeks(weeksToSubtract: Long)

  • Returns a new LocalDate with the specified number of weeks subtracted.

  • Example Usage:

minusDays(daysToSubtract: Long)

  • Returns a new LocalDate with the specified number of days subtracted.

  • Example Usage:

plusDays(daysToAdd: Long)

  • Returns a new LocalDate with the specified number of days added.

  • Example Usage:

daysUntil(endDate: LocalDate)

  • Calculates the number of days until the specified end date.

  • Example Usage:

monthsUntil(endDate: LocalDate)

  • Calculates the number of months until the specified end date.

  • Example Usage:

toEpochDay()

  • Returns the number of days since the epoch (typically January 1, 1970).

  • Example Usage:


Comparison Methods

isBefore(other: LocalDate)

  • Checks if the current date is before the specified date.

  • Returns true if the current date is before other, false otherwise.

  • Example Usage:

isAfter(other: LocalDate)

  • Checks if the current date is after the specified date.

  • Returns true if the current date is after other, false otherwise.

  • Example Usage:


Date-Time Combination Methods

atStartOfDay()

  • Combines the date with the time of midnight to create a LocalDateTime at the start of the date.

  • Example Usage:

atTime(time: LocalTime)

  • Combines the date with the specified LocalTime to create a LocalDateTime.

  • Example Usage:

atTime(hour: Integer, minute: Integer, second: Integer)

  • Combines the date with the specified hour, minute, and second to create a LocalDateTime.

  • Example Usage:

Was this helpful?