Enumeration
列挙
JSONEncoder.DateEncodingStrategy
The formatting strategies available for formatting dates when encoding a date as JSON.
日付をJSONとしてエンコードする場合に日付を書式設定するのに利用可能な書式設定戦略。
Topics
話題
Default Formats
省略時の書式設定
case deferredToDate
The strategy that uses formatting from the Date structure.
Date構造体から書式設定するのに使う戦略。
Standard Formats
標準書式設定
case iso8601
The strategy that formats dates according to the ISO 8601 and RFC 3339 standards.
ISO 8601 および RFC 3339 規格によって日付を書式設定する戦略。
Epoch Formats
紀元書式設定
case millisecondsSince1970
The strategy that encodes dates in terms of milliseconds since midnight UTC on January 1, 1970.
1970年1月1日でのUTC午前0時からのミリ秒の観点から日付をエンコードする戦略。
case secondsSince1970
The strategy that encodes dates in terms of seconds since midnight UTC on January 1, 1970.
1970年1月1日でのUTC午前0時からの秒の観点から日付をエンコードする戦略。
See Also
参照
Encoding Dates
日付をエンコードする