Tabnine Logo
FieldMapper$Builder.docValues
Code IndexAdd Tabnine to your IDE (free)

How to use
docValues
method
in
org.elasticsearch.index.mapper.FieldMapper$Builder

Best Java code snippets using org.elasticsearch.index.mapper.FieldMapper$Builder.docValues (Showing top 16 results out of 315)

origin: org.elasticsearch/elasticsearch

@Override
public Builder docValues(boolean docValues) {
  if (docValues) {
    throw new IllegalArgumentException("[text] fields do not support doc values");
  }
  return super.docValues(docValues);
}
origin: org.elasticsearch/elasticsearch

@Override
public Builder docValues(boolean docValues) {
  if (docValues == true) {
    throw new IllegalArgumentException("field [" + name + "] does not currently support " + TypeParsers.DOC_VALUES);
  }
  return super.docValues(docValues);
}
origin: org.elasticsearch/elasticsearch

  iterator.remove();
} else if (propName.equals(DOC_VALUES)) {
  builder.docValues(nodeBooleanValue(name, DOC_VALUES, propNode, parserContext));
  iterator.remove();
} else if (propName.equals("boost")) {
origin: com.strapdata.elasticsearch/elasticsearch

  iterator.remove();
} else if (propName.equals(DOC_VALUES)) {
  builder.docValues(nodeBooleanValue(name, DOC_VALUES, propNode));
  iterator.remove();
} else if (propName.equals("boost")) {
origin: harbby/presto-connectors

  iterator.remove();
} else if (propName.equals(DOC_VALUES)) {
  builder.docValues(nodeBooleanValue(propNode));
  iterator.remove();
} else if (propName.equals("boost")) {
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

  iterator.remove();
} else if (propName.equals(DOC_VALUES)) {
  builder.docValues(nodeBooleanValue(name, DOC_VALUES, propNode, parserContext));
  iterator.remove();
} else if (propName.equals("boost")) {
origin: apache/servicemix-bundles

  iterator.remove();
} else if (propName.equals(DOC_VALUES)) {
  builder.docValues(nodeBooleanValue(name, DOC_VALUES, propNode, parserContext));
  iterator.remove();
} else if (propName.equals("boost")) {
origin: com.strapdata.elasticsearch/elasticsearch

    lonMapperBuilder.precisionStep(precisionStep);
  latMapper = (LegacyDoubleFieldMapper) latMapperBuilder.includeInAll(false).store(fieldType.stored()).docValues(false).build(context);
  lonMapper = (LegacyDoubleFieldMapper) lonMapperBuilder.includeInAll(false).store(fieldType.stored()).docValues(false).build(context);
} else {
  latMapper = new NumberFieldMapper.Builder(Names.LAT, NumberFieldMapper.NumberType.DOUBLE)
origin: harbby/presto-connectors

  lonMapperBuilder.precisionStep(precisionStep);
latMapper = (DoubleFieldMapper) latMapperBuilder.includeInAll(false).store(fieldType.stored()).docValues(false).build(context);
lonMapper = (DoubleFieldMapper) lonMapperBuilder.includeInAll(false).store(fieldType.stored()).docValues(false).build(context);
geoPointFieldType.setLatLonEnabled(latMapper.fieldType(), lonMapper.fieldType());
origin: org.elasticsearch.plugin/mapper-extras

@Override
public Builder docValues(boolean docValues) {
  if (docValues == true) {
    throw new IllegalArgumentException("field [" + name + "] does not currently support " + TypeParsers.DOC_VALUES);
  }
  return super.docValues(docValues);
}
origin: com.strapdata.elasticsearch/elasticsearch

@Override
public Builder docValues(boolean docValues) {
  if (docValues == true) {
    throw new IllegalArgumentException("field [" + name + "] does not currently support " + TypeParsers.DOC_VALUES);
  }
  return super.docValues(docValues);
}
origin: apache/servicemix-bundles

@Override
public Builder docValues(boolean docValues) {
  if (docValues) {
    throw new IllegalArgumentException("[text] fields do not support doc values");
  }
  return super.docValues(docValues);
}
origin: apache/servicemix-bundles

@Override
public Builder docValues(boolean docValues) {
  if (docValues == true) {
    throw new IllegalArgumentException("field [" + name + "] does not currently support " + TypeParsers.DOC_VALUES);
  }
  return super.docValues(docValues);
}
origin: com.strapdata.elasticsearch/elasticsearch

@Override
public Builder docValues(boolean docValues) {
  if (docValues) {
    throw new IllegalArgumentException("[text] fields do not support doc values");
  }
  return super.docValues(docValues);
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

@Override
public Builder docValues(boolean docValues) {
  if (docValues == true) {
    throw new IllegalArgumentException("field [" + name + "] does not currently support " + TypeParsers.DOC_VALUES);
  }
  return super.docValues(docValues);
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

@Override
public Builder docValues(boolean docValues) {
  if (docValues) {
    throw new IllegalArgumentException("[text] fields do not support doc values");
  }
  return super.docValues(docValues);
}
org.elasticsearch.index.mapperFieldMapper$BuilderdocValues

Popular methods of FieldMapper$Builder

  • fieldType
  • setupFieldType
  • addMultiField
  • boost
  • buildFullName
  • copyTo
  • getDefaultIndexOption
  • includeInAll
  • index
  • indexAnalyzer
  • indexOptions
  • name
  • indexOptions,
  • name,
  • omitNorms,
  • searchAnalyzer,
  • similarity,
  • store,
  • storeTermVectorOffsets,
  • storeTermVectorPayloads,
  • storeTermVectorPositions

Popular in Java

  • Reactive rest calls using spring rest template
  • notifyDataSetChanged (ArrayAdapter)
  • getSystemService (Context)
  • getExternalFilesDir (Context)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now