1# -*- perl -*-
2# !!! DO NOT EDIT !!!
3# This file was automatically generated.
4package Net::Amazon::Validate::ItemSearch::ca::Keywords;
5
6use 5.006;
7use strict;
8use warnings;
9
10sub new {
11    my ($class , %options) = @_;
12    my $self = {
13        '_default' => 'Books',
14        %options,
15    };
16
17    push @{$self->{_options}}, 'Blended';
18    push @{$self->{_options}}, 'Books';
19    push @{$self->{_options}}, 'Classical';
20    push @{$self->{_options}}, 'DVD';
21    push @{$self->{_options}}, 'Electronics';
22    push @{$self->{_options}}, 'ForeignBooks';
23    push @{$self->{_options}}, 'Music';
24    push @{$self->{_options}}, 'Software';
25    push @{$self->{_options}}, 'SoftwareVideoGames';
26    push @{$self->{_options}}, 'VHS';
27    push @{$self->{_options}}, 'Video';
28    push @{$self->{_options}}, 'VideoGames';
29
30    bless $self, $class;
31}
32
33sub user_or_default {
34    my ($self, $user) = @_;
35    if (defined $user && length($user) > 0) {
36        return $self->find_match($user);
37    }
38    return $self->default();
39}
40
41sub default {
42    my ($self) = @_;
43    return $self->{_default};
44}
45
46sub find_match {
47    my ($self, $value) = @_;
48    for (@{$self->{_options}}) {
49        return $_ if lc($_) eq lc($value);
50    }
51    die "$value is not a valid value for ca::Keywords!\n";
52}
53
541;
55
56__END__
57
58=head1 NAME
59
60Net::Amazon::Validate::ItemSearch::ca::Keywords - valid search indicies
61for the ca locale and the Keywords SearchIndex.
62
63=head1 DESCRIPTION
64
65The default value is Books, unless mode is specified.
66
67The list of available values are:
68
69    Blended
70    Books
71    Classical
72    DVD
73    Electronics
74    ForeignBooks
75    Music
76    Software
77    SoftwareVideoGames
78    VHS
79    Video
80    VideoGames
81
82=cut
83