Interface IIndexableField
Represents a single field for indexing. Index
Namespace: Lucene.Net.Index
Assembly: Lucene.Net.dll
Syntax
public interface IIndexableField
Properties
| Improve this Doc View SourceBoost
Returns the field's index-time boost.
Only fields can have an index-time boost, if you want to simulate a "document boost", then you must pre-multiply it across all the relevant fields yourself.
The boost is used to compute the norm factor for the field. By
default, in the Compute
It is illegal to return a boost other than 1.0f for a field that is not
indexed (Is
Declaration
float Boost { get; }
Property Value
Type | Description |
---|---|
System. |
See Also
| Improve this Doc View SourceIndexableFieldType
IIndexable
Declaration
IIndexableFieldType IndexableFieldType { get; }
Property Value
Type | Description |
---|---|
IIndexable |
Name
Field name
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System. |
NumericType
Gets the Numeric
Expert: The difference between this property and Numeric
In Java, the numeric type was determined by checking the type of
GetGet*Value()
method to retrieve the value.
NOTE: Since Lucene codecs do not support BYTE or INT16, fields created with these types will always be INT32 when read back from the index.
Declaration
NumericFieldType NumericType { get; }
Property Value
Type | Description |
---|---|
Numeric |
Methods
| Improve this Doc View SourceGetBinaryValue()
Non-null if this field has a binary value.
Declaration
BytesRef GetBinaryValue()
Returns
Type | Description |
---|---|
Bytes |
GetByteValue()
Returns the field value as System.null
if the type
is non-numeric.
Declaration
byte? GetByteValue()
Returns
Type | Description |
---|---|
System. |
The field value or |
GetDoubleValue()
Returns the field value as System.null
if the type
is non-numeric.
Declaration
double? GetDoubleValue()
Returns
Type | Description |
---|---|
System. |
The field value or |
GetInt16Value()
Returns the field value as System.null
if the type
is non-numeric.
Declaration
short? GetInt16Value()
Returns
Type | Description |
---|---|
System. |
The field value or |
GetInt32Value()
Returns the field value as System.null
if the type
is non-numeric.
Declaration
int? GetInt32Value()
Returns
Type | Description |
---|---|
System. |
The field value or |
GetInt64Value()
Returns the field value as System.null
if the type
is non-numeric.
Declaration
long? GetInt64Value()
Returns
Type | Description |
---|---|
System. |
The field value or |
GetNumericValue()
Non-null if this field has a numeric value.
Declaration
[Obsolete("In .NET, use of this method will cause boxing/unboxing. Instead, use the NumericType property to check the underlying type and call the appropriate GetXXXValue() method to retrieve the value.")]
object GetNumericValue()
Returns
Type | Description |
---|---|
System. |
GetReaderValue()
Non-null if this field has a System.
Declaration
TextReader GetReaderValue()
Returns
Type | Description |
---|---|
System. |
GetSingleValue()
Returns the field value as System.null
if the type
is non-numeric.
Declaration
float? GetSingleValue()
Returns
Type | Description |
---|---|
System. |
The field value or |
GetStringValue()
Non-null if this field has a string value.
Declaration
string GetStringValue()
Returns
Type | Description |
---|---|
System. |
The string representation of the value if it is either a System. |
GetStringValue(IFormatProvider)
The value of the field as a System.null
. If null
, the System.
Declaration
string GetStringValue(IFormatProvider provider)
Parameters
Type | Name | Description |
---|---|---|
System. |
provider | An object that supplies culture-specific formatting information. This parameter has no effect if this field is non-numeric. |
Returns
Type | Description |
---|---|
System. |
The string representation of the value if it is either a System. |
GetStringValue(String)
The value of the field as a System.null
. If null
, the System.
Declaration
string GetStringValue(string format)
Parameters
Type | Name | Description |
---|---|---|
System. |
format | A standard or custom numeric format string. This parameter has no effect if this field is non-numeric. |
Returns
Type | Description |
---|---|
System. |
The string representation of the value if it is either a System. |
GetStringValue(String, IFormatProvider)
The value of the field as a System.null
. If null
, the System.
Declaration
string GetStringValue(string format, IFormatProvider provider)
Parameters
Type | Name | Description |
---|---|---|
System. |
format | A standard or custom numeric format string. This parameter has no effect if this field is non-numeric. |
System. |
provider | An object that supplies culture-specific formatting information. This parameter has no effect if this field is non-numeric. |
Returns
Type | Description |
---|---|
System. |
The string representation of the value if it is either a System. |
GetTokenStream(Analyzer)
Creates the Token
Declaration
TokenStream GetTokenStream(Analyzer analyzer)
Parameters
Type | Name | Description |
---|---|---|
Analyzer | analyzer | Analyzer that should be used to create the Token |
Returns
Type | Description |
---|---|
Token |
Token |
Exceptions
Type | Condition |
---|---|
System. |
Can be thrown while creating the Token |