| Net-Amazon documentation | Contained in the Net-Amazon distribution. |
Net::Amazon::Validate::ItemSearch::de::Blended - valid search indicies for the de locale and the Blended SearchIndex.
The default value is Keywords, unless mode is specified.
The list of available values are:
Keywords
| Net-Amazon documentation | Contained in the Net-Amazon distribution. |
# -*- perl -*- # !!! DO NOT EDIT !!! # This file was automatically generated. package Net::Amazon::Validate::ItemSearch::de::Blended; use 5.006; use strict; use warnings; sub new { my ($class , %options) = @_; my $self = { '_default' => 'Keywords', %options, }; push @{$self->{_options}}, 'Keywords'; bless $self, $class; } sub user_or_default { my ($self, $user) = @_; if (defined $user && length($user) > 0) { return $self->find_match($user); } return $self->default(); } sub default { my ($self) = @_; return $self->{_default}; } sub find_match { my ($self, $value) = @_; for (@{$self->{_options}}) { return $_ if lc($_) eq lc($value); } die "$value is not a valid value for de::Blended!\n"; } 1; __END__