AceTime
2.1.0
Date and time classes for Arduino that support timezones from the TZ Database.
|
Cace_time::BasicZone | A thin wrapper around a basic::ZoneInfo data structure to provide a stable API access to some useful basic::ZoneInfo data |
Cace_time::basic::BrokerFactory | A factory that creates a basic::ZoneInfoBroker |
Cace_time::extended::BrokerFactory | A factory that creates a basic::ZoneInfoBroker |
Cace_time::DateStrings | Class that translates a numeric month (1-12) or dayOfWeek (1-7) into a human readable string |
Cace_time::extended::DateTuple | A tuple that represents a date and time |
Cace_time::Epoch | Utitliy functions for setting, retrieving, and converting the current epoch |
Cace_time::internal::EpochConverterHinnant | Utility class that converts AceTime epoch days to (year, month, day) in the Gregorian calendar and vise versa |
Cace_time::internal::EpochConverterJulian | Utility class that converts AceTime epoch days to (year, month, day) in the Gregorian calendar and vise versa |
Cace_time::ExtendedZone | A thin wrapper around an extended::ZoneInfo data structure to provide a stable API access to some useful extended::ZoneInfo data |
Cace_time::FindResult | Result of a search for transition at a specific epochSeconds or a specific LocalDateTime |
Cace_time::LocalDate | The date (year, month, day) representing the date without regards to time zone |
Cace_time::LocalDateTime | Class that holds the date-time as the components (year, month, day, hour, minute, second) without regards to the time zone |
Cace_time::LocalTime | The time (hour, minute, second) fields representing the time without regards to the day or the time zone |
Cace_time::ManualZoneManager | A simple version of ZoneManager that converts a manual TimeZoneData with fixed STD and DST offsets into a TimeZone |
Cace_time::extended::MatchingEraTemplate< ZEB > | Data structure that captures the matching ZoneEra and its ZoneRule transitions for a given year |
Cace_time::internal::MonthDay | The result of calcStartDayOfMonth() |
Cace_time::OffsetDateTime | The date (year, month, day), time (hour, minute, second) and fixed offset from UTC (timeOffset) |
Cace_time::TimeOffset | A thin wrapper that represents a time offset from a reference point, usually 00:00 at UTC, but not always |
Cace_time::TimePeriod | Represents a period of time relative to some known point in time, potentially represented by a DateTime |
Cace_time::TimeZone | Class that describes a time zone |
Cace_time::TimeZoneData | Data structure that captures the internal state of a TimeZone object with enough information so that it can be serialized using TimeZone::toTimeZoneData() then reconstructed using ZoneManager::createForTimeZoneData() |
Cace_time::extended::TransitionForDateTimeTemplate< ZEB, ZPB, ZRB > | The result of the findTransitionForDateTime(const LocalDatetime& ldt) method which can return 0, 1, or 2 matching Transitions depending on whether the DateTime is an exact match, in the gap, or in the overlap |
Cace_time::extended::TransitionForSecondsTemplate< ZEB, ZPB, ZRB > | Tuple of a matching Transition and its 'fold' |
Cace_time::extended::TransitionStorageTemplate< SIZE, ZEB, ZPB, ZRB > | A heap manager which is specialized and tuned to manage a collection of Transitions, keeping track of unused, used, and active states, using a fixed array of Transitions |
Cace_time::extended::TransitionStorageTemplate< kMaxTransitions, ZEB, ZPB, ZRB > | |
Cace_time::basic::TransitionTemplate< ZIB, ZEB, ZPB, ZRB > | Data structure that defines the start of a specific UTC offset as described by the matching ZoneEra and its ZoneRule for a given year |
Cace_time::extended::TransitionTemplate< ZEB, ZPB, ZRB > | Represents an interval of time where the time zone obeyed a certain UTC offset and DST delta |
Cace_time::extended::YearMonthTuple | A simple tuple to represent a year/month pair |
Cace_time::internal::ZoneContext | Metadata about the zone database |
Cace_time::ZonedDateTime | The date (year, month, day), time (hour, minute, second), and a timeZone object that supports the zones defined by the IANA TZ database |
Cace_time::ZonedExtra | |
Cace_time::basic::ZoneEraBroker | Data broker for accessing ZoneEra |
Cace_time::extended::ZoneEraBroker | Data broker for accessing ZoneEra |
Cace_time::basic::ZoneInfoBroker | Data broker for accessing ZoneInfo |
Cace_time::extended::ZoneInfoBroker | Data broker for accessing ZoneInfo |
▼Cace_time::ZoneManager | Base class for ManualZoneManager, BasicZoneManager, and ExtendedZoneManager to keep ZoneManager::kInvalidIndex for backwards compatibility |
▼Cace_time::ZoneManagerTemplate< extended::ZoneInfo, extended::ZoneRegistrar, ExtendedZoneProcessor, ExtendedZone > | |
Cace_time::ExtendedZoneManager | An implementation of the ZoneManager which uses a registry of extended::ZoneInfo records |
▼Cace_time::ZoneManagerTemplate< basic::ZoneInfo, basic::ZoneRegistrar, BasicZoneProcessor, BasicZone > | |
Cace_time::BasicZoneManager | An implementation of the ZoneManager which uses a registry of basic::ZoneInfo records |
Cace_time::ZoneManagerTemplate< ZI, ZRR, ZP, Z > | A templatized implementation of ZoneManager that binds the ZoneRegistrar with the corresponding (Basic|Extended)ZoneProcessorCache |
Cace_time::basic::ZonePolicyBroker | Data broker for accessing ZonePolicy |
Cace_time::extended::ZonePolicyBroker | Data broker for accessing ZonePolicy |
▼Cace_time::ZoneProcessor | Base interface for ZoneProcessor classes |
▼Cace_time::BasicZoneProcessorTemplate< basic::BrokerFactory, basic::ZoneInfoBroker, basic::ZoneEraBroker, basic::ZonePolicyBroker, basic::ZoneRuleBroker > | |
Cace_time::BasicZoneProcessor | A specific implementation of BasicZoneProcessorTemplate that uses ZoneXxxBrokers which read from zonedb files in PROGMEM flash memory |
▼Cace_time::ExtendedZoneProcessorTemplate< extended::BrokerFactory, extended::ZoneInfoBroker, extended::ZoneEraBroker, extended::ZonePolicyBroker, extended::ZoneRuleBroker > | |
Cace_time::ExtendedZoneProcessor | A specific implementation of ExtendedZoneProcessorTemplate that uses ZoneXxxBrokers which read from zonedb files in PROGMEM flash memory |
Cace_time::BasicZoneProcessorTemplate< BF, ZIB, ZEB, ZPB, ZRB > | An implementation of ZoneProcessor that supports a subset of the zones containing in the TZ Database |
Cace_time::ExtendedZoneProcessorTemplate< BF, ZIB, ZEB, ZPB, ZRB > | An implementation of ZoneProcessor that supports for all zones defined by the TZ Database |
▼Cace_time::ZoneProcessorCacheBaseTemplate< ZP > | The template class of BasicZoneProcessorCacheBase or ExtendedZoneProcessorCacheBase |
Cace_time::BasicZoneProcessorCache< SIZE > | An implementation of a BasicZoneProcessorCacheBase where the cache of size SIZE is embedded into the class itself |
Cace_time::ExtendedZoneProcessorCache< SIZE > | An implementation of an ExtendedZoneProcessorCacheBase where the cache of size SIZE is embedded into the class itself |
Cace_time::internal::ZoneRegistrarTemplate< ZI, ZIB, ZRGB > | Class that allows looking up the ZoneInfo (ZI) from its TZDB identifier (e.g |
▼Cace_time::internal::ZoneRegistrarTemplate< basic::ZoneInfo, basic::ZoneInfoBroker, basic::ZoneRegistryBroker > | |
Cace_time::basic::ZoneRegistrar | Concrete template instantiation of ZoneRegistrarTemplate for basic::ZoneInfo, which can be used with BasicZoneProcessor |
▼Cace_time::internal::ZoneRegistrarTemplate< extended::ZoneInfo, extended::ZoneInfoBroker, extended::ZoneRegistryBroker > | |
Cace_time::extended::ZoneRegistrar | Concrete template instantiation of ZoneRegistrarTemplate for extended::ZoneInfo, which can be used with ExtendedZoneProcessor |
Cace_time::basic::ZoneRegistryBroker | Data broker for accessing the ZoneRegistry |
Cace_time::extended::ZoneRegistryBroker | Data broker for accessing the ZoneRegistry |
Cace_time::basic::ZoneRuleBroker | Data broker for accessing ZoneRule |
Cace_time::extended::ZoneRuleBroker | Data broker for accessing ZoneRule |
Cace_time::ZoneSorterByName< ZM > | ZoneSorterByName, templatized on BasicZoneManager or ExtendedZoneManager |
Cace_time::ZoneSorterByOffsetAndName< ZM > | ZoneSorterByOffsetAndName, templatized on BasicZoneManager or ExtendedZoneManager |