1# -*- perl -*-
2# !!! DO NOT EDIT !!!
3# This file was automatically generated.
4package Net::Amazon::Validate::ItemSearch::jp::VHS;
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}}, 'Actor';
18    push @{$self->{_options}}, 'AudienceRating';
19    push @{$self->{_options}}, 'Availability';
20    push @{$self->{_options}}, 'BrowseNode';
21    push @{$self->{_options}}, 'Count';
22    push @{$self->{_options}}, 'Director';
23    push @{$self->{_options}}, 'Format';
24    push @{$self->{_options}}, 'ItemPage';
25    push @{$self->{_options}}, 'Keywords';
26    push @{$self->{_options}}, 'Magazines';
27    push @{$self->{_options}}, 'Performer';
28    push @{$self->{_options}}, 'Publisher';
29    push @{$self->{_options}}, 'Sort';
30    push @{$self->{_options}}, 'Title';
31
32    bless $self, $class;
33}
34
35sub user_or_default {
36    my ($self, $user) = @_;
37    if (defined $user && length($user) > 0) {
38        return $self->find_match($user);
39    }
40    return $self->default();
41}
42
43sub default {
44    my ($self) = @_;
45    return $self->{_default};
46}
47
48sub find_match {
49    my ($self, $value) = @_;
50    for (@{$self->{_options}}) {
51        return $_ if lc($_) eq lc($value);
52    }
53    die "$value is not a valid value for jp::VHS!\n";
54}
55
561;
57
58__END__
59
60=head1 NAME
61
62Net::Amazon::Validate::ItemSearch::jp::VHS - valid search indicies
63for the jp locale and the VHS SearchIndex.
64
65=head1 DESCRIPTION
66
67The default value is Title, unless mode is specified.
68
69The list of available values are:
70
71    Actor
72    AudienceRating
73    Availability
74    BrowseNode
75    Count
76    Director
77    Format
78    ItemPage
79    Keywords
80    Magazines
81    Performer
82    Publisher
83    Sort
84    Title
85
86=cut
87