1# -*- perl -*-
2# !!! DO NOT EDIT !!!
3# This file was automatically generated.
4package Net::Amazon::Validate::ItemSearch::us::TextStream;
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}}, 'Apparel';
18    push @{$self->{_options}}, 'Automotive';
19    push @{$self->{_options}}, 'Books';
20    push @{$self->{_options}}, 'Electronics';
21    push @{$self->{_options}}, 'GourmetFood';
22    push @{$self->{_options}}, 'Jewelry';
23    push @{$self->{_options}}, 'Merchants';
24    push @{$self->{_options}}, 'Photo';
25    push @{$self->{_options}}, 'SilverMerchants';
26    push @{$self->{_options}}, 'Toys';
27    push @{$self->{_options}}, 'UnboxVideo';
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 us::TextStream!\n";
52}
53
541;
55
56__END__
57
58=head1 NAME
59
60Net::Amazon::Validate::ItemSearch::us::TextStream - valid search indices for the us locale and the TextStream operation.
61
62=head1 DESCRIPTION
63
64The default value is Books, unless mode is specified.
65
66The list of available values are:
67
68    Apparel
69    Automotive
70    Books
71    Electronics
72    GourmetFood
73    Jewelry
74    Merchants
75    Photo
76    SilverMerchants
77    Toys
78    UnboxVideo
79    VideoGames
80
81=cut
82