On Jun 24, 2005, at 2:46 PM, Yousef Ourabi wrote:
I have a quick question on the Field class. What is the difference
between this:
for ()
Field content = new Field("content", contentArray[i], true, true,
true, true);
doc.add(content);
and this:
doc.add(Field.Keyword("userAlias", userAli
I have a quick question on the Field class. What is the difference between this:
for ()
Field content = new Field("content", contentArray[i], true, true, true, true);
doc.add(content);
and this:
doc.add(Field.Keyword("userAlias", userAlias ));
In the first example where the constructor is uesed