Thanks Mike/Hoss for the clarification.
Antony
Michael McCandless wrote:
Chris Hostetter wrote:
: > But, StandardTokenizer is public? It "exports" those constants
for you?
:
: Really? Sorry, but I can't find them - in 2.3.1 sources, there are no
: references to those statics. Javadocs h
Chris Hostetter wrote:
: > But, StandardTokenizer is public? It "exports" those constants
for you?
:
: Really? Sorry, but I can't find them - in 2.3.1 sources, there
are no
: references to those statics. Javadocs have no reference to them in
: StandardTokenizer
I think Michael is forg
: > But, StandardTokenizer is public? It "exports" those constants for you?
:
: Really? Sorry, but I can't find them - in 2.3.1 sources, there are no
: references to those statics. Javadocs have no reference to them in
: StandardTokenizer
I think Michael is forgetting that he re-added those c
But, StandardTokenizer is public? It "exports" those constants for you?
Really? Sorry, but I can't find them - in 2.3.1 sources, there are no
references to those statics. Javadocs have no reference to them in
StandardTokenizer
http://lucene.apache.org/java/2_3_1/api/org/apache/lucene/anal
But, StandardTokenizer is public? It "exports" those constants for you?
Mike
Antony Bowesman wrote:
But, the constants that are used by StandardTokenizer are still
available as static ints in the StandardTokenizer class (ie,
ALPHANUM,
APOSTROPHE, etc.). Does that work?
Problem as mentio
But, the constants that are used by StandardTokenizer are still
available as static ints in the StandardTokenizer class (ie, ALPHANUM,
APOSTROPHE, etc.). Does that work?
Problem as mentioned below is that the StandardTokenizerImpl.java is package
private and even though the ints and string arr
Unfortunately, we lost the StandardTokenizerConstants interface as
part of this:
https://issues.apache.org/jira/browse/LUCENE-966
which was a speedup to StandardTokenizer by switching to JFlex instead
of JavaCC.
But, the constants that are used by StandardTokenizer are still
available as s
I'm migrating from 2.1 to 2.3 and found that the public interface
StandardTokenizerConstants has gone. It looks like the definitions have
disappeared inside the package private class StandardTokenizerImpl.
Was this intentional? I was using these to determine the returns values from
Token.typ