# Auto-generated file -- DO NOT EDIT!!!!! =head1 NAME KinoSearch::Search::TermQuery - Query which matches individual terms. =head1 SYNOPSIS my $term_query = KinoSearch::Search::TermQuery->new( field => 'content', term => 'foo', ); my $hits = $searcher->hits( query => $term_query ); =head1 DESCRIPTION TermQuery is a subclass of L for matching individual terms in a specific field. =head1 CONSTRUCTORS =head2 new( I<[labeled params]> ) my $term_query = KinoSearch::Search::TermQuery->new( field => 'content', # required term => 'foo', # required ); =over =item * B - Field name. =item * B - Term text. =back =head1 INHERITANCE KinoSearch::Search::TermQuery isa L isa L. =head1 COPYRIGHT AND LICENSE Copyright 2005-2010 Marvin Humphrey This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut