| Data-Conveyor documentation | Contained in the Data-Conveyor distribution. |
Data::Conveyor::Value::Enum - Stage-based conveyor-belt-like ticket handling system
version 1.103130
See perlmodinstall for information and options on installing Perl modules.
No bugs have been reported.
Please report any bugs or feature requests through the web interface at http://rt.cpan.org/Public/Dist/Display.html?Name=Data-Conveyor.
The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit http://www.perl.com/CPAN/ to find a CPAN site near you, or see http://search.cpan.org/dist/Data-Conveyor/.
The development version lives at http://github.com/hanekomu/Data-Conveyor and may be cloned from git://github.com/hanekomu/Data-Conveyor. Instead of sending patches, please fork this project using the standard git and github infrastructure.
This software is copyright (c) 2004 by Marcel Gruenauer.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Data-Conveyor documentation | Contained in the Data-Conveyor distribution. |
use 5.008; use strict; use warnings; package Data::Conveyor::Value::Enum; BEGIN { $Data::Conveyor::Value::Enum::VERSION = '1.103130'; } # ABSTRACT: Stage-based conveyor-belt-like ticket handling system # Inherit from Class::Scaffold::Base because get_valid_values_list is # presumably going to ask the delegate. Need to put Class::Value::Enum first # so it can find the more specific comparable() in Class::Value. If you need # to ask the storage for the list of valid values, your subclass should # inherit from Class::Scaffold::Storable instead. use parent qw( Class::Value::Enum Class::Scaffold::Base ); 1; __END__