Compute the normalization value for a field, given the accumulated
state of term processing for this field (see {@link FieldInvertState}).
Implementations should calculate a float value based on the field
state and then return that value.
For backward compatibility this method by default calls
{@link #LengthNorm(String, int)} passing
{@link FieldInvertState#GetLength()} as the second argument, and
then multiplies this value by {@link FieldInvertState#GetBoost()}.
WARNING: This API is new and experimental and may
suddenly change.
Namespace: Lucene.Net.SearchAssembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1
Syntax
Return Value
the calculated float norm
See Also