view Lib/IMPL/SQL/Schema/MySQL/EnumType.pm @ 394:2c14f66efa08

minor changes
author cin
date Tue, 18 Feb 2014 18:17:20 +0400
parents 56364d0c4b4f
children
line wrap: on
line source

package IMPL::SQL::Schema::MySQL::EnumType;
use strict;

use IMPL::Const qw(:prop);
use IMPL::declare {
    base => [
        'IMPL::SQL::Schema::Type' => '@_'
    ],
    props => [
        enumValues => PROP_RO | PROP_LIST 
    ]
};

our @ENUM_TYPES = qw(ENUM SET);

sub CTOR {
    my $this = shift;
    
    die ArgException->new(name => "The specified name is invalid", $this->name)
        unless grep uc($this->name) eq $_, @ENUM_TYPES;
}

1;