NAME
MooseX::Types::DateTime - DateTime related constraints and coercions for Moose
VERSION
version 0.09
SYNOPSIS
Export Example:
use MooseX::Types::DateTime qw(TimeZone);
has time_zone => (
isa => TimeZone,
is => "rw",
coerce => 1,
);
Class->new( time_zone => "Africa/Timbuktu" );
Namespaced Example:
use MooseX::Types::DateTime;
has time_zone => (
isa => 'DateTime::TimeZone',
is => "rw",
coerce => 1,
);
Class->new( time_zone => "Africa/Timbuktu" );
DESCRIPTION
This module packages several Moose::Util::TypeConstraints with coercions, designed to work with the DateTime suite of objects.
CONSTRAINTS
-
A class type for DateTime.
-
from
NumUses "from_epoch" in DateTime. Floating values will be used for sub-second precision, see DateTime for details.
-
from
HashRefCalls "new" in DateTime with the hash entries as arguments.
-
-
A class type for DateTime::Duration
-
from
NumUses "new" in DateTime::Duration and passes the number as the
secondsargument.Note that due to leap seconds, DST changes etc this may not do what you expect. For instance passing in
86400is not always equivalent to one day, although there are that many seconds in a day. See "How Date Math is Done" in DateTime for more details. -
from
HashRefCalls "new" in DateTime::Duration with the hash entries as arguments.
-
-
A class type for DateTime::Locale::root with the name DateTime::Locale.
-
from
StrThe string is treated as a language tag (e.g.
enorhe_IL) and given to "load" in DateTime::Locale. -
from Locale::Maktext
The
Locale::Maketext/language_tagattribute will be used with "load" in DateTime::Locale. -
A class type for DateTime::TimeZone.
-
from
StrTreated as a time zone name or offset. See "USAGE" in DateTime::TimeZone for more details on the allowed values.
Delegates to "new" in DateTime::TimeZone with the string as the
nameargument.
-
-
SEE ALSO
MooseX::Types::DateTime::MoreCoercions
AUTHOR
Yuval Kogman nothingmuch@woobling.org
John Napiorkowski
COPYRIGHT
Copyright (c) 2008 Yuval Kogman. All rights reserved
This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.