Interface IsDefaultDateAdapterOptions
-
- All Known Implementing Classes:
DefaultChartDateAdapterOptions
,DefaultDateAdapterOptions
,ScaleDateAdapter
public interface IsDefaultDateAdapterOptions
Interface to define date adapter options defaults.- Author:
- Andrea "Stock" Stocchero
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CLocale
getLocale()
Returns the locale that LUXON must use by the date adapter.
See here the details about locale in LUXON.NumberingSystem
getNumberingSystem()
Returns the name of numbering systems that LUXON must use by the date adapter.
See here the details about numbering system in LUXON.Calendar
getOutputCalendar()
Returns the name of calendaring systems that LUXON must use by the date adapter.
See here the list of implemented and available.TimeZone
getZone()
Returns the zone that LUXON must use by the date adapter.
See here the details about time zone in LUXON.
-
-
-
Method Detail
-
getLocale
CLocale getLocale()
Returns the locale that LUXON must use by the date adapter.
See here the details about locale in LUXON.- Returns:
- the locale that LUXON must use by the date adapter
-
getZone
TimeZone getZone()
Returns the zone that LUXON must use by the date adapter.
See here the details about time zone in LUXON.- Returns:
- the zone that LUXON must use by the date adapter
-
getOutputCalendar
Calendar getOutputCalendar()
Returns the name of calendaring systems that LUXON must use by the date adapter.
See here the list of implemented and available. output calendar systems.- Returns:
- the name of calendaring systems that LUXON must use by the date adapter
-
getNumberingSystem
NumberingSystem getNumberingSystem()
Returns the name of numbering systems that LUXON must use by the date adapter.
See here the details about numbering system in LUXON.- Returns:
- the name of numbering systems that LUXON must use by the date adapter
-
-