1# -*- perl -*-
2# !!! DO NOT EDIT !!!
3# This file was automatically generated.
4package Net::Amazon::Validate::ItemSearch::ca::ItemPage;
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}}, 'Books';
18    push @{$self->{_options}}, 'Classical';
19    push @{$self->{_options}}, 'DVD';
20    push @{$self->{_options}}, 'ForeignBooks';
21    push @{$self->{_options}}, 'Music';
22    push @{$self->{_options}}, 'Software';
23    push @{$self->{_options}}, 'SoftwareVideoGames';
24    push @{$self->{_options}}, 'VHS';
25    push @{$self->{_options}}, 'Video';
26    push @{$self->{_options}}, 'VideoGames';
27
28    bless $self, $class;
29}
30
31sub user_or_default {
32    my ($self, $user) = @_;
33    if (defined $user && length($user) > 0) {
34        return $self->find_match($user);
35    }
36    return $self->default();
37}
38
39sub default {
40    my ($self) = @_;
41    return $self->{_default};
42}
43
44sub find_match {
45    my ($self, $value) = @_;
46    for (@{$self->{_options}}) {
47        return $_ if lc($_) eq lc($value);
48    }
49    die "$value is not a valid value for ca::ItemPage!\n";
50}
51
521;
53
54__END__
55
56=head1 NAME
57
58Net::Amazon::Validate::ItemSearch::ca::ItemPage - valid search indices for the ca locale and the ItemPage operation.
59
60=head1 DESCRIPTION
61
62The default value is Books, unless mode is specified.
63
64The list of available values are:
65
66    Books
67    Classical
68    DVD
69    ForeignBooks
70    Music
71    Software
72    SoftwareVideoGames
73    VHS
74    Video
75    VideoGames
76
77=cut
78