Home Reference Source Repository
import {IsoChronology} from 'js-joda/src/chrono/IsoChronology.js'
public class | source

IsoChronology

Extends:

Enum → IsoChronology

Static Method Summary

Static Public Methods
public static

isLeapYear(prolepticYear: number): boolean

Checks if the year is a leap year, according to the ISO proleptic calendar system rules.

Method Summary

Public Methods
public

resolveDate(fieldValues: *, resolverStyle: *): undefined

Inherited Summary

From class Enum
public

equals(other: *): *

public

toString(): *

Static Public Methods

public static isLeapYear(prolepticYear: number): boolean source

Checks if the year is a leap year, according to the ISO proleptic calendar system rules.

This method applies the current rules for leap years across the whole time-line. In general, a year is a leap year if it is divisible by four without remainder. However, years divisible by 100, are not leap years, with the exception of years divisible by 400 which are.

For example, 1904 is a leap year it is divisible by 4. 1900 was not a leap year as it is divisible by 100, however 2000 was a leap year as it is divisible by 400.

The calculation is proleptic - applying the same rules into the far future and far past. This is historically inaccurate, but is correct for the ISO-8601 standard.

Params:

NameTypeAttributeDescription
prolepticYear number

the ISO proleptic year to check

Return:

boolean

true if the year is leap, false otherwise

Public Methods

public resolveDate(fieldValues: *, resolverStyle: *): undefined source

Params:

NameTypeAttributeDescription
fieldValues *
resolverStyle *

Return:

undefined