Searched defs:isStored (Results 1 - 3 of 3) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/document/
H A DFieldable.java82 * For indexing, if isStored()==true, the stringValue() will be used as the stored field value
103 boolean isStored(); method in interface:Fieldable
H A DAbstractField.java38 protected boolean isStored = false; field in class:AbstractField
62 this.isStored = store.isStored();
119 this.storeTermVector = termVector.isStored();
127 public final boolean isStored() { return isStored; } method in class:AbstractField
258 if (isStored) {
H A DField.java49 public boolean isStored() { return true; }
55 public boolean isStored() { return false; }
58 public abstract boolean isStored(); method in class:Field.Store
178 public boolean isStored() { return false; }
189 public boolean isStored() { return true; }
203 public boolean isStored() { return true; }
217 public boolean isStored() { return true; }
233 public boolean isStored() { return true; }
261 public abstract boolean isStored(); method in class:Field.TermVector
305 if (isStored) {
[all...]

Completed in 1701 milliseconds