Uses of Interface
org.elasticsearch.common.bytes.BytesReference

Packages that use BytesReference
org.elasticsearch.action.admin.indices.create Create index action. 
org.elasticsearch.action.admin.indices.template.put   
org.elasticsearch.action.admin.indices.validate.query Validate action. 
org.elasticsearch.action.bulk   
org.elasticsearch.action.count Count action. 
org.elasticsearch.action.deletebyquery Delete by query action. 
org.elasticsearch.action.explain Explain action. 
org.elasticsearch.action.get Get action. 
org.elasticsearch.action.index Index action. 
org.elasticsearch.action.mlt More Like This action. 
org.elasticsearch.action.percolate   
org.elasticsearch.action.search Search action. 
org.elasticsearch.action.update   
org.elasticsearch.common.bytes   
org.elasticsearch.common.compress   
org.elasticsearch.common.compress.lzf   
org.elasticsearch.common.compress.snappy   
org.elasticsearch.common.io   
org.elasticsearch.common.io.stream   
org.elasticsearch.common.text   
org.elasticsearch.common.xcontent   
org.elasticsearch.common.xcontent.json   
org.elasticsearch.common.xcontent.smile   
org.elasticsearch.common.xcontent.yaml   
org.elasticsearch.http.netty   
org.elasticsearch.index.engine   
org.elasticsearch.index.get   
org.elasticsearch.index.mapper   
org.elasticsearch.index.percolator   
org.elasticsearch.index.query   
org.elasticsearch.index.shard.service   
org.elasticsearch.index.translog   
org.elasticsearch.rest   
org.elasticsearch.rest.action.support   
org.elasticsearch.search   
org.elasticsearch.search.builder   
org.elasticsearch.search.internal   
org.elasticsearch.search.lookup   
org.elasticsearch.search.warmer   
org.elasticsearch.transport.netty   
 

Uses of BytesReference in org.elasticsearch.action.admin.indices.create
 

Methods in org.elasticsearch.action.admin.indices.create with parameters of type BytesReference
 CreateIndexRequestBuilder CreateIndexRequestBuilder.setSource(BytesReference source)
          Sets the settings and mappings as a single source.
 CreateIndexRequest CreateIndexRequest.source(BytesReference source)
          Sets the settings and mappings as a single source.
 

Uses of BytesReference in org.elasticsearch.action.admin.indices.template.put
 

Methods in org.elasticsearch.action.admin.indices.template.put with parameters of type BytesReference
 PutIndexTemplateRequestBuilder PutIndexTemplateRequestBuilder.setSource(BytesReference templateSource)
          The template source definition.
 PutIndexTemplateRequest PutIndexTemplateRequest.source(BytesReference source)
          The template source definition.
 

Uses of BytesReference in org.elasticsearch.action.admin.indices.validate.query
 

Methods in org.elasticsearch.action.admin.indices.validate.query with parameters of type BytesReference
 ValidateQueryRequest ValidateQueryRequest.query(BytesReference querySource, boolean unsafe)
          The query source to validate.
 ValidateQueryRequestBuilder ValidateQueryRequestBuilder.setQuery(BytesReference querySource)
          The query source to validate.
 ValidateQueryRequestBuilder ValidateQueryRequestBuilder.setQuery(BytesReference querySource, boolean unsafe)
          The query source to validate.
 

Uses of BytesReference in org.elasticsearch.action.bulk
 

Methods in org.elasticsearch.action.bulk with parameters of type BytesReference
 BulkProcessor BulkProcessor.add(BytesReference data, boolean contentUnsafe, String defaultIndex, String defaultType)
           
 BulkRequest BulkRequest.add(BytesReference data, boolean contentUnsafe, String defaultIndex, String defaultType)
          Adds a framed data in binary format
 

Uses of BytesReference in org.elasticsearch.action.count
 

Methods in org.elasticsearch.action.count with parameters of type BytesReference
 CountRequest CountRequest.query(BytesReference querySource, boolean unsafe)
           
 CountRequestBuilder CountRequestBuilder.setQuery(BytesReference querySource)
          The query source to execute.
 CountRequestBuilder CountRequestBuilder.setQuery(BytesReference querySource, boolean unsafe)
          The query source to execute.
 

Uses of BytesReference in org.elasticsearch.action.deletebyquery
 

Methods in org.elasticsearch.action.deletebyquery with parameters of type BytesReference
 DeleteByQueryRequest DeleteByQueryRequest.query(BytesReference source, boolean unsafe)
           
 DeleteByQueryRequestBuilder DeleteByQueryRequestBuilder.setQuery(BytesReference querySource)
          The query source to execute.
 DeleteByQueryRequestBuilder DeleteByQueryRequestBuilder.setQuery(BytesReference querySource, boolean unsafe)
          The query source to execute.
 

Uses of BytesReference in org.elasticsearch.action.explain
 

Methods in org.elasticsearch.action.explain that return BytesReference
 BytesReference ExplainSourceBuilder.buildAsBytes(XContentType contentType)
           
 BytesReference ExplainRequest.source()
           
 

Methods in org.elasticsearch.action.explain with parameters of type BytesReference
 ExplainSourceBuilder ExplainSourceBuilder.query(BytesReference queryBinary)
           
 ExplainRequestBuilder ExplainRequestBuilder.setQuery(BytesReference query)
          Sets the query to get a score explanation for.
 ExplainRequestBuilder ExplainRequestBuilder.setSource(BytesReference source, boolean unsafe)
          Sets the full source of the explain request (for example, wrapping an actual query).
 ExplainRequest ExplainRequest.source(BytesReference source, boolean unsafe)
           
 

Uses of BytesReference in org.elasticsearch.action.get
 

Methods in org.elasticsearch.action.get that return BytesReference
 BytesReference GetResponse.getSourceAsBytesRef()
          Returns bytes reference, also un compress the source if needed.
 BytesReference GetResponse.sourceRef()
          Returns bytes reference, also un compress the source if needed.
 

Methods in org.elasticsearch.action.get with parameters of type BytesReference
 void MultiGetRequest.add(String defaultIndex, String defaultType, String[] defaultFields, BytesReference data)
           
 

Uses of BytesReference in org.elasticsearch.action.index
 

Methods in org.elasticsearch.action.index that return BytesReference
 BytesReference IndexRequest.safeSource()
           
 BytesReference IndexRequest.source()
          The source of the document to index, recopied to a new array if it is unsage.
 

Methods in org.elasticsearch.action.index with parameters of type BytesReference
 IndexRequestBuilder IndexRequestBuilder.setSource(BytesReference source)
          Sets the source.
 IndexRequestBuilder IndexRequestBuilder.setSource(BytesReference source, boolean unsafe)
          Sets the source.
 IndexRequest IndexRequest.source(BytesReference source, boolean unsafe)
          Sets the document to index in bytes form.
 

Uses of BytesReference in org.elasticsearch.action.mlt
 

Methods in org.elasticsearch.action.mlt that return BytesReference
 BytesReference MoreLikeThisRequest.searchSource()
          An optional search source request allowing to control the search request for the more like this documents.
 

Methods in org.elasticsearch.action.mlt with parameters of type BytesReference
 MoreLikeThisRequest MoreLikeThisRequest.searchSource(BytesReference searchSource, boolean unsafe)
          An optional search source request allowing to control the search request for the more like this documents.
 

Uses of BytesReference in org.elasticsearch.action.percolate
 

Methods in org.elasticsearch.action.percolate that return BytesReference
 BytesReference PercolateRequest.source()
           
 

Methods in org.elasticsearch.action.percolate with parameters of type BytesReference
 PercolateRequestBuilder PercolateRequestBuilder.setSource(BytesReference source)
          Sets the document to index in bytes form.
 PercolateRequestBuilder PercolateRequestBuilder.setSource(BytesReference source, boolean unsafe)
          Sets the document to index in bytes form.
 PercolateRequest PercolateRequest.source(BytesReference source, boolean unsafe)
           
 

Uses of BytesReference in org.elasticsearch.action.search
 

Methods in org.elasticsearch.action.search that return BytesReference
 BytesReference SearchRequest.extraSource()
          Additional search source to execute.
 BytesReference SearchRequest.source()
          The search source to execute.
 

Methods in org.elasticsearch.action.search with parameters of type BytesReference
 MultiSearchRequest MultiSearchRequest.add(BytesReference data, boolean contentUnsafe, String[] indices, String[] types, String searchType, IgnoreIndices ignoreIndices)
           
 SearchRequest SearchRequest.extraSource(BytesReference source, boolean unsafe)
          Allows to provide additional source that will be used as well.
 SearchRequestBuilder SearchRequestBuilder.setExtraSource(BytesReference source)
          Sets the source of the request as a json string.
 SearchRequestBuilder SearchRequestBuilder.setExtraSource(BytesReference source, boolean unsafe)
          Sets the source of the request as a json string.
 SearchRequestBuilder SearchRequestBuilder.setFacets(BytesReference facets)
          Sets a raw (xcontent) binary representation of facets to use.
 SearchRequestBuilder SearchRequestBuilder.setFilter(BytesReference filter)
          Sets a filter on the query executed that only applies to the search query (and not facets for example).
 SearchRequestBuilder SearchRequestBuilder.setQuery(BytesReference queryBinary)
          Constructs a new search source builder with a raw search query.
 SearchRequestBuilder SearchRequestBuilder.setSource(BytesReference source)
          Sets the source of the request as a json string.
 SearchRequestBuilder SearchRequestBuilder.setSource(BytesReference source, boolean unsafe)
          Sets the source of the request as a json string.
 SearchRequest SearchRequest.source(BytesReference source, boolean unsafe)
          The search source to execute.
 

Uses of BytesReference in org.elasticsearch.action.update
 

Methods in org.elasticsearch.action.update with parameters of type BytesReference
protected  GetResult TransportUpdateAction.extractGetResult(UpdateRequest request, long version, Map<String,Object> source, XContentType sourceContentType, BytesReference sourceAsBytes)
           
 UpdateRequestBuilder UpdateRequestBuilder.setSource(BytesReference source)
           
 UpdateRequest UpdateRequest.source(BytesReference source)
           
 

Uses of BytesReference in org.elasticsearch.common.bytes
 

Classes in org.elasticsearch.common.bytes that implement BytesReference
 class ByteBufferBytesReference
           
 class BytesArray
           
 class ChannelBufferBytesReference
           
 class HashedBytesArray
           
 

Methods in org.elasticsearch.common.bytes that return BytesReference
 BytesReference ByteBufferBytesReference.slice(int from, int length)
           
 BytesReference ChannelBufferBytesReference.slice(int from, int length)
           
 BytesReference BytesArray.slice(int from, int length)
           
 BytesReference BytesReference.slice(int from, int length)
          Slice the bytes from the from index up to length.
 BytesReference HashedBytesArray.slice(int from, int length)
           
 

Uses of BytesReference in org.elasticsearch.common.compress
 

Methods in org.elasticsearch.common.compress that return BytesReference
static BytesReference CompressorFactory.uncompressIfNeeded(BytesReference bytes)
          Uncompress the provided data, data can be detected as compressed using CompressorFactory.isCompressed(byte[], int, int).
 

Methods in org.elasticsearch.common.compress with parameters of type BytesReference
static Compressor CompressorFactory.compressor(BytesReference bytes)
           
 boolean Compressor.isCompressed(BytesReference bytes)
           
static boolean CompressorFactory.isCompressed(BytesReference bytes)
           
static BytesReference CompressorFactory.uncompressIfNeeded(BytesReference bytes)
          Uncompress the provided data, data can be detected as compressed using CompressorFactory.isCompressed(byte[], int, int).
 

Constructors in org.elasticsearch.common.compress with parameters of type BytesReference
CompressedString(BytesReference data)
           
 

Uses of BytesReference in org.elasticsearch.common.compress.lzf
 

Methods in org.elasticsearch.common.compress.lzf with parameters of type BytesReference
 boolean LZFCompressor.isCompressed(BytesReference bytes)
           
 

Uses of BytesReference in org.elasticsearch.common.compress.snappy
 

Methods in org.elasticsearch.common.compress.snappy with parameters of type BytesReference
 boolean SnappyCompressor.isCompressed(BytesReference bytes)
           
 

Uses of BytesReference in org.elasticsearch.common.io
 

Methods in org.elasticsearch.common.io that return BytesReference
 BytesReference BytesStream.bytes()
           
 BytesReference FastByteArrayOutputStream.bytes()
          Returns the underlying byte array.
 

Uses of BytesReference in org.elasticsearch.common.io.stream
 

Methods in org.elasticsearch.common.io.stream that return BytesReference
 BytesReference BytesStreamOutput.bytes()
           
 BytesReference AdapterStreamInput.readBytesReference()
           
 BytesReference StreamInput.readBytesReference()
          Reads a bytes reference from this stream, might hold an actual reference to the underlying bytes of the stream.
 BytesReference BytesStreamInput.readBytesReference(int length)
           
 BytesReference AdapterStreamInput.readBytesReference(int length)
           
 BytesReference StreamInput.readBytesReference(int length)
          Reads a bytes reference from this stream, might hold an actual reference to the underlying bytes of the stream.
 

Methods in org.elasticsearch.common.io.stream with parameters of type BytesReference
 void AdapterStreamOutput.writeBytesReference(BytesReference bytes)
           
 void StreamOutput.writeBytesReference(BytesReference bytes)
          Writes the bytes reference, including a length header.
 

Constructors in org.elasticsearch.common.io.stream with parameters of type BytesReference
BytesStreamInput(BytesReference bytes)
           
 

Uses of BytesReference in org.elasticsearch.common.text
 

Methods in org.elasticsearch.common.text that return BytesReference
 BytesReference StringAndBytesText.bytes()
           
 BytesReference Text.bytes()
          The UTF8 bytes representing the the text, might be converted on the fly, see Text.hasBytes()
 BytesReference BytesText.bytes()
           
 BytesReference StringText.bytes()
           
 

Constructors in org.elasticsearch.common.text with parameters of type BytesReference
BytesText(BytesReference bytes)
           
StringAndBytesText(BytesReference bytes)
           
 

Uses of BytesReference in org.elasticsearch.common.xcontent
 

Methods in org.elasticsearch.common.xcontent that return BytesReference
 BytesReference XContentBuilder.bytes()
           
 

Methods in org.elasticsearch.common.xcontent with parameters of type BytesReference
static String XContentHelper.convertToJson(BytesReference bytes, boolean reformatJson)
           
static String XContentHelper.convertToJson(BytesReference bytes, boolean reformatJson, boolean prettyPrint)
           
static Tuple<XContentType,Map<String,Object>> XContentHelper.convertToMap(BytesReference bytes, boolean ordered)
           
 XContentParser XContent.createParser(BytesReference bytes)
          Creates a parser over the provided bytes.
static XContentParser XContentHelper.createParser(BytesReference bytes)
           
 XContentBuilder XContentBuilder.field(String name, BytesReference value)
           
 XContentBuilder XContentBuilder.rawField(String fieldName, BytesReference content)
           
 XContentBuilder XContentBuilder.value(BytesReference value)
           
 void XContentGenerator.writeRawField(String fieldName, BytesReference content, OutputStream bos)
           
static XContent XContentFactory.xContent(BytesReference bytes)
           
static XContentType XContentFactory.xContentType(BytesReference bytes)
          Guesses the content type based on the provided bytes.
 

Uses of BytesReference in org.elasticsearch.common.xcontent.json
 

Methods in org.elasticsearch.common.xcontent.json with parameters of type BytesReference
 XContentParser JsonXContent.createParser(BytesReference bytes)
           
 void JsonXContentGenerator.writeRawField(String fieldName, BytesReference content, OutputStream bos)
           
 

Uses of BytesReference in org.elasticsearch.common.xcontent.smile
 

Methods in org.elasticsearch.common.xcontent.smile with parameters of type BytesReference
 XContentParser SmileXContent.createParser(BytesReference bytes)
           
 void SmileXContentGenerator.writeRawField(String fieldName, BytesReference content, OutputStream bos)
           
 

Uses of BytesReference in org.elasticsearch.common.xcontent.yaml
 

Methods in org.elasticsearch.common.xcontent.yaml with parameters of type BytesReference
 XContentParser YamlXContent.createParser(BytesReference bytes)
           
 void YamlXContentGenerator.writeRawField(String fieldName, BytesReference content, OutputStream bos)
           
 

Uses of BytesReference in org.elasticsearch.http.netty
 

Methods in org.elasticsearch.http.netty that return BytesReference
 BytesReference NettyHttpRequest.content()
           
 

Uses of BytesReference in org.elasticsearch.index.engine
 

Methods in org.elasticsearch.index.engine that return BytesReference
 BytesReference Engine.Create.source()
           
 BytesReference Engine.Index.source()
           
 BytesReference Engine.DeleteByQuery.source()
           
 

Constructors in org.elasticsearch.index.engine with parameters of type BytesReference
Engine.DeleteByQuery(org.apache.lucene.search.Query query, BytesReference source, String[] filteringAliases, org.apache.lucene.search.Filter aliasFilter, String... types)
           
 

Uses of BytesReference in org.elasticsearch.index.get
 

Methods in org.elasticsearch.index.get that return BytesReference
 BytesReference GetResult.internalSourceRef()
          Internal source representation, might be compressed....
 BytesReference GetResult.sourceRef()
          Returns bytes reference, also un compress the source if needed.
 

Constructors in org.elasticsearch.index.get with parameters of type BytesReference
GetResult(String index, String type, String id, long version, boolean exists, BytesReference source, Map<String,GetField> fields)
           
 

Uses of BytesReference in org.elasticsearch.index.mapper
 

Methods in org.elasticsearch.index.mapper that return BytesReference
 BytesReference SourceToParse.source()
           
 BytesReference ParseContext.source()
           
 BytesReference ParsedDocument.source()
           
 

Methods in org.elasticsearch.index.mapper with parameters of type BytesReference
 ParsedDocument DocumentMapper.parse(BytesReference source)
           
 ParsedDocument DocumentMapper.parse(String type, String id, BytesReference source)
           
static SourceToParse SourceToParse.source(BytesReference source)
           
 void ParseContext.source(BytesReference source)
           
 

Constructors in org.elasticsearch.index.mapper with parameters of type BytesReference
ParsedDocument(String uid, String id, String type, String routing, long timestamp, long ttl, org.apache.lucene.document.Document document, org.apache.lucene.analysis.Analyzer analyzer, BytesReference source, boolean mappingsModified)
           
ParsedDocument(String uid, String id, String type, String routing, long timestamp, long ttl, List<org.apache.lucene.document.Document> documents, org.apache.lucene.analysis.Analyzer analyzer, BytesReference source, boolean mappingsModified)
           
SourceToParse(BytesReference source)
           
 

Uses of BytesReference in org.elasticsearch.index.percolator
 

Methods in org.elasticsearch.index.percolator that return BytesReference
 BytesReference PercolatorExecutor.SourceRequest.source()
           
 

Methods in org.elasticsearch.index.percolator with parameters of type BytesReference
 void PercolatorExecutor.addQuery(String name, BytesReference source)
           
 org.apache.lucene.search.Query PercolatorExecutor.parseQuery(String name, BytesReference source)
           
 

Constructors in org.elasticsearch.index.percolator with parameters of type BytesReference
PercolatorExecutor.SourceRequest(String type, BytesReference source)
           
 

Uses of BytesReference in org.elasticsearch.index.query
 

Methods in org.elasticsearch.index.query that return BytesReference
 BytesReference QueryBuilder.buildAsBytes()
           
 BytesReference BaseQueryBuilder.buildAsBytes()
           
 BytesReference QueryBuilder.buildAsBytes(XContentType contentType)
           
 BytesReference BaseQueryBuilder.buildAsBytes(XContentType contentType)
           
 

Methods in org.elasticsearch.index.query with parameters of type BytesReference
 ParsedQuery IndexQueryParserService.parse(BytesReference source)
           
 

Uses of BytesReference in org.elasticsearch.index.shard.service
 

Methods in org.elasticsearch.index.shard.service with parameters of type BytesReference
 Engine.DeleteByQuery IndexShard.prepareDeleteByQuery(BytesReference querySource, String[] filteringAliases, String... types)
           
 Engine.DeleteByQuery InternalIndexShard.prepareDeleteByQuery(BytesReference querySource, String[] filteringAliases, String... types)
           
 

Uses of BytesReference in org.elasticsearch.index.translog
 

Fields in org.elasticsearch.index.translog declared as BytesReference
 BytesReference Translog.Source.source
           
 

Methods in org.elasticsearch.index.translog that return BytesReference
 BytesReference Translog.Create.source()
           
 BytesReference Translog.Index.source()
           
 BytesReference Translog.DeleteByQuery.source()
           
 

Constructors in org.elasticsearch.index.translog with parameters of type BytesReference
Translog.DeleteByQuery(BytesReference source, String[] filteringAliases, String... types)
           
Translog.Source(BytesReference source, String routing, String parent, long timestamp, long ttl)
           
 

Uses of BytesReference in org.elasticsearch.rest
 

Methods in org.elasticsearch.rest that return BytesReference
 BytesReference RestRequest.content()
           
 

Uses of BytesReference in org.elasticsearch.rest.action.support
 

Methods in org.elasticsearch.rest.action.support that return BytesReference
static BytesReference RestActions.parseQuerySource(RestRequest request)
           
 

Methods in org.elasticsearch.rest.action.support with parameters of type BytesReference
static void RestXContentBuilder.restDocumentSource(BytesReference source, XContentBuilder builder, ToXContent.Params params)
           
 

Uses of BytesReference in org.elasticsearch.search
 

Methods in org.elasticsearch.search that return BytesReference
 BytesReference SearchHit.getSourceRef()
          Returns bytes reference, also un compress the source if needed.
 BytesReference SearchHit.sourceRef()
          Returns bytes reference, also un compress the source if needed.
 

Uses of BytesReference in org.elasticsearch.search.builder
 

Methods in org.elasticsearch.search.builder that return BytesReference
 BytesReference SearchSourceBuilder.buildAsBytes()
           
 BytesReference SearchSourceBuilder.buildAsBytes(XContentType contentType)
           
 

Methods in org.elasticsearch.search.builder with parameters of type BytesReference
 SearchSourceBuilder SearchSourceBuilder.facets(BytesReference facetsBinary)
          Sets a raw (xcontent / json) facets.
 SearchSourceBuilder SearchSourceBuilder.filter(BytesReference filterBinary)
          Sets a filter on the query executed that only applies to the search query (and not facets for example).
 SearchSourceBuilder SearchSourceBuilder.query(BytesReference queryBinary)
          Constructs a new search source builder with a raw search query.
 

Uses of BytesReference in org.elasticsearch.search.internal
 

Methods in org.elasticsearch.search.internal that return BytesReference
 BytesReference InternalSearchRequest.extraSource()
           
 BytesReference InternalSearchHit.getSourceRef()
           
 BytesReference InternalSearchHit.internalSourceRef()
          Internal source representation, might be compressed....
 BytesReference InternalSearchRequest.source()
           
 BytesReference InternalSearchHit.sourceRef()
          Returns bytes reference, also un compress the source if needed.
 

Methods in org.elasticsearch.search.internal with parameters of type BytesReference
 InternalSearchRequest InternalSearchRequest.extraSource(BytesReference extraSource)
           
 InternalSearchRequest InternalSearchRequest.source(BytesReference source)
           
 

Uses of BytesReference in org.elasticsearch.search.lookup
 

Methods in org.elasticsearch.search.lookup with parameters of type BytesReference
 void SourceLookup.setNextSource(BytesReference source)
           
static Map<String,Object> SourceLookup.sourceAsMap(BytesReference source)
           
 

Uses of BytesReference in org.elasticsearch.search.warmer
 

Methods in org.elasticsearch.search.warmer that return BytesReference
 BytesReference IndexWarmersMetaData.Entry.source()
           
 

Constructors in org.elasticsearch.search.warmer with parameters of type BytesReference
IndexWarmersMetaData.Entry(String name, String[] types, BytesReference source)
           
 

Uses of BytesReference in org.elasticsearch.transport.netty
 

Methods in org.elasticsearch.transport.netty that return BytesReference
 BytesReference ChannelBufferStreamInput.readBytesReference(int length)
           
 



Copyright © 2009-2012. All Rights Reserved.