Prior to https://issues.apache.org/jira/browse/LUCENE-1068, StandardTokenizer mischaracterized as acronyms tokens like www.abc.com
when they should have been labeled as hosts instead.
Namespace: Lucene.Net.Analysis.StandardAssembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1
Syntax
C# |
---|
[ObsoleteAttribute("Remove in 3.X and make true the only valid value")]
public virtual bool IsReplaceInvalidAcronym() |
Visual Basic |
---|
<ObsoleteAttribute("Remove in 3.X and make true the only valid value")> _
Public Overridable Function IsReplaceInvalidAcronym As Boolean |
Visual C++ |
---|
[ObsoleteAttribute(L"Remove in 3.X and make true the only valid value")]
public:
virtual bool IsReplaceInvalidAcronym() |
Return Value
true if StandardTokenizer now returns these tokens as Hosts, otherwise false
See Also