struct Time::Format
Overview
The RFC 3339 datetime format (ISO 8601 profile).
Defined in:
time/format/pattern.crtime/format/formatter.cr
time/format/parser.cr
time/format.cr
time/format/custom/rfc_2822.cr
time/format/custom/http_date.cr
time/format/custom/iso_8601.cr
time/format/custom/rfc_3339.cr
time/format/custom/yaml_date.cr
json/from_json.cr
json/to_json.cr
yaml/from_yaml.cr
yaml/to_yaml.cr
Constructors
-
.new(pattern : String, location : Location? = nil)
Creates a new
Time::Format
with the given pattern.
Instance Method Summary
-
#format(time : Time, io : IO)
Formats a
Time
into the given io. - #format(time : Time) : String
- #from_json(pull : JSON::PullParser)
- #from_yaml(ctx : YAML::ParseContext, node : YAML::Nodes::Node) : Time
-
#parse(string, location = @location) : Time
Parses a string into a
Time
. -
#pattern : String
Returns the string pattern of this format.
- #to_json(value : Time, json : JSON::Builder)
- #to_yaml(value : Time, yaml : YAML::Nodes::Builder)
Instance methods inherited from struct Struct
==(other) : Bool
==,
hash(hasher)
hash,
inspect(io : IO) : Nil
inspect,
pretty_print(pp) : Nil
pretty_print,
to_s(io)
to_s
Instance methods inherited from struct Value
==(other : JSON::Any)==(other : YAML::Any)
==(other) ==, dup dup
Instance methods inherited from class Object
!=(other)
!=,
!~(other)
!~,
==(other)
==,
===(other : JSON::Any)===(other : YAML::Any)
===(other) ===, =~(other) =~, class class, dup dup, hash(hasher)
hash hash, inspect(io : IO)
inspect inspect, itself itself, not_nil! not_nil!, pretty_inspect(width = 79, newline = "\n", indent = 0) : String pretty_inspect, pretty_print(pp : PrettyPrint) : Nil pretty_print, tap(&block) tap, to_json(io : IO)
to_json to_json, to_pretty_json(indent : String = " ")
to_pretty_json(io : IO, indent : String = " ") to_pretty_json, to_s
to_s(io : IO) to_s, to_yaml(io : IO)
to_yaml to_yaml, try(&block) try, unsafe_as(type : T.class) forall T unsafe_as
Constructor methods inherited from class Object
from_json(string_or_io, root : String) : selffrom_json(string_or_io) : self from_json, from_yaml(string_or_io : String | IO) : self from_yaml
Constructor Detail
Creates a new Time::Format
with the given pattern. The given time
location will be used when parsing a Time
and no time zone is found in it.