1# -*- perl -*-
2# !!! DO NOT EDIT !!!
3# This file was automatically generated.
4package Net::Amazon::Validate::ItemSearch::fr::Watches;
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}}, 'BrowseNode';
18    push @{$self->{_options}}, 'Condition';
19    push @{$self->{_options}}, 'ItemPage';
20    push @{$self->{_options}}, 'Keywords';
21    push @{$self->{_options}}, 'MerchantId';
22    push @{$self->{_options}}, 'MinimumPrice';
23    push @{$self->{_options}}, 'Sort';
24    push @{$self->{_options}}, 'State';
25    push @{$self->{_options}}, 'TextStream';
26    push @{$self->{_options}}, 'Title';
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 fr::Watches!\n";
50}
51
521;
53
54__END__
55
56=head1 NAME
57
58Net::Amazon::Validate::ItemSearch::fr::Watches - valid search indicies
59for the fr locale and the Watches SearchIndex.
60
61=head1 DESCRIPTION
62
63The default value is Title, unless mode is specified.
64
65The list of available values are:
66
67    BrowseNode
68    Condition
69    ItemPage
70    Keywords
71    MerchantId
72    MinimumPrice
73    Sort
74    State
75    TextStream
76    Title
77
78=cut
79