NAME
Fey::Role::ColumnLike - A role for "column-like" behavior
SYNOPSIS
use Moose;
with 'Fey::Role::ColumnLike';
DESCRIPTION
Class which do this role are "column-like" . This role aggregates several other roles for the Fey::Column and Fey::Column::Alias classes.
METHODS
This role provides the following methods:
$column->is_selectable()
$column->is_comparable()
$column->is_groupable()
$column->is_orderable()
These methods all return true when the $column->table()
returns an object.
ROLES
This class does the Fey::Role::Selectable
, Fey::Role::Comparable
, Fey::Role::Groupable
, and Fey::Role::Orderable
roles.
AUTHOR
Dave Rolsky, <autarch@urth.org>
BUGS
See Fey for details on how to report bugs.
COPYRIGHT & LICENSE
Copyright 2006-2009 Dave Rolsky, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.