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