The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Plucene::Index::FieldInfo - infomation on a Field in a Document

SYNOPSIS

        my $field_info = Plucene::Index::FieldInfo->new({
                name       => $name,
                is_indexed => $is_indexed,      
        });

DESCRIPTION

This holds information about a field.

METHODS

name / is_indexed / number

Get / set these

new

        my $field_info = Plucene::Index::FieldInfo->new({
                name       => $name,
                is_indexed => $is_indexed,      
        });

This will create a new Plucene::Index::FieldInfo object using the passed name and is_indexed flag.