package Rose::DB::Object::Metadata::Column::DatetimeYearToFraction3; use strict; use Rose::DB::Object::Metadata::Column::DatetimeYearToFraction; our @ISA = qw(Rose::DB::Object::Metadata::Column::DatetimeYearToFraction); our $VERSION = '0.01'; sub type { 'datetime year to fraction(3)' } sub format_value { shift; shift->format_datetime_year_to_fraction_3(@_) } 1; __END__ =head1 NAME Rose::DB::Object::Metadata::Column::DatetimeYearToFraction3 - Datetime year to fraction(3) column metadata. =head1 SYNOPSIS use Rose::DB::Object::Metadata::Column::DatetimeYearToFraction3; $col = Rose::DB::Object::Metadata::Column::DatetimeYearToFraction3->new(...); $col->make_methods(...); ... =head1 DESCRIPTION Objects of this class store and manipulate metadata for "datetime year to fraction(3)" columns in a database. Column metadata objects store information about columns (data type, size, etc.) and are responsible for creating object methods that manipulate column values. This class inherits from L. Inherited methods that are not overridden will not be documented a second time here. See the L documentation for more information. =head1 METHOD MAP =over 4 =item C L, L, C 'datetime year to fraction(3)', interface =E 'get_set', ...> =item C L, L, C 'datetime year to fraction(3)', interface =E 'get', ...> =item C L, L, C 'datetime year to fraction(3)', interface =E 'set', ...> =back See the L documentation for an explanation of this method map. =head1 OBJECT METHODS =over 4 =item B Convert VALUE to the equivalent L object suitable for storage in a "datetime year to fraction(3)" column. VALUE maybe returned unmodified if it is a valid "datetime year to fraction(3)" keyword or otherwise has special meaning to the underlying database. DB is a L object that is used as part of the parsing process. Both arguments are required. =item B Returns "datetime year to fraction(3)". =back =head1 AUTHOR John C. Siracusa (siracusa@gmail.com) =head1 LICENSE Copyright (c) 2009 by John C. Siracusa. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.