table of contents
WebService::Solr::Field(3pm) | User Contributed Perl Documentation | WebService::Solr::Field(3pm) |
NAME¶
WebService::Solr::Field - A field objectSYNOPSIS¶
my $field = WebService::Solr::Field->new( foo => 'bar' );
DESCRIPTION¶
This class represents a field from a document, which is basically a name-value pair.ACCESSORS¶
- name - the field's name
- value - the field's value
- boost - a floating-point boost value
METHODS¶
new( $name => $value, \%options )¶
Creates a new field object. Currently, the only option available is a "boost" value.BUILDARGS( @args )¶
A Moo override to allow our custom constructor.to_element( )¶
Serializes the object to an XML::Easy::Element object.to_xml( )¶
Serializes the object to xml.AUTHORS¶
Brian Cassidy <bricas@cpan.org>Kirk Beers
COPYRIGHT AND LICENSE¶
Copyright 2008-2016 National Adult Literacy DatabaseThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
2017-11-01 | perl v5.26.1 |