Searched defs:stored (Results 1 - 5 of 5) sorted by relevance

/lucene-3.6.0/lucene/contrib/instantiated/src/java/org/apache/lucene/store/instantiated/
H A DFieldSetting.java33 boolean stored = false; field in class:FieldSetting
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/document/
H A DField.java33 be used to represent dates, urls, etc. Fields are optionally stored in the
39 /** Specifies whether and how a field should be stored. */
44 * value is stored in its original form, i.e. no analyzer is used before it is
45 * stored.
66 * {@link Field.Store stored}. */
89 * As no analyzer is used the value will be stored as a single term. This is
241 public static TermVector toTermVector(boolean stored, boolean withOffsets, boolean withPositions) { argument
243 // If it is not stored, nothing else matters.
244 if (!stored) {
306 throw new IllegalArgumentException("cannot set a Reader value on a stored fiel
[all...]
/lucene-3.6.0/solr/core/src/java/org/apache/solr/schema/
H A DSchemaField.java80 public boolean stored() { return (properties & STORED)!=0; } method in class:SchemaField
225 throw new RuntimeException("SchemaField: " + name + " conflicting stored field options:" + props);
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/index/
H A DDocHelper.java145 public static Map<String,Fieldable> stored =new HashMap<String,Fieldable>(); field in class:DocHelper
178 if (f.isStored()) add(stored,f);
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/index/
H A DDocHelper.java145 public static Map<String,Fieldable> stored =new HashMap<String,Fieldable>(); field in class:DocHelper
178 if (f.isStored()) add(stored,f);

Completed in 31 milliseconds