Searched defs:getPayload (Results 1 - 19 of 19) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/tokenattributes/
H A DPayloadAttribute.java30 public Payload getPayload(); method in interface:PayloadAttribute
H A DPayloadAttributeImpl.java46 public Payload getPayload() { method in class:PayloadAttributeImpl
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DTermPositions.java67 byte[] getPayload(byte[] data, int offset) throws IOException; method in interface:TermPositions
H A DSegmentTermPositions.java178 public byte[] getPayload(byte[] data, int offset) throws IOException { method in class:SegmentTermPositions
H A DMultipleTermPositions.java208 public byte[] getPayload(byte[] data, int offset) throws IOException { method in class:MultipleTermPositions
H A DFilterIndexReader.java75 public byte[] getPayload(byte[] data, int offset) throws IOException { method in class:FilterIndexReader.FilterTermPositions
76 return ((TermPositions) this.in).getPayload(data, offset);
H A DParallelReader.java645 public byte[] getPayload(byte[] data, int offset) throws IOException { method in class:ParallelReader.ParallelTermPositions
646 return ((TermPositions)termDocs).getPayload(data, offset);
H A DDirectoryReader.java1323 public byte[] getPayload(byte[] data, int offset) throws IOException { method in class:DirectoryReader.MultiTermPositions
1324 return ((TermPositions)current).getPayload(data, offset);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/spans/
H A DSpans.java75 public abstract Collection<byte[]> getPayload() throws IOException; method in class:Spans
H A DTermSpans.java96 public Collection<byte[]> getPayload() throws IOException { method in class:TermSpans
98 bytes = positions.getPayload(bytes, 0);
H A DSpanPositionCheckQuery.java154 public Collection<byte[]> getPayload() throws IOException { method in class:SpanPositionCheckQuery.PositionCheckSpan
157 result = new ArrayList<byte[]>(spans.getPayload());
H A DNearSpansOrdered.java122 public Collection<byte[]> getPayload() throws IOException { method in class:NearSpansOrdered
268 possibleMatchPayloads.addAll(subSpans[subSpans.length - 1].getPayload());
279 Collection<byte[]> payload = prevSpans.getPayload();
303 Collection<byte[]> payload = prevSpans.getPayload();
H A DNearSpansUnordered.java119 public Collection<byte[]> getPayload() throws IOException { method in class:NearSpansUnordered.SpansCell
120 return new ArrayList<byte[]>(spans.getPayload());
243 public Collection<byte[]> getPayload() throws IOException { method in class:NearSpansUnordered
247 matchPayload.addAll(cell.getPayload());
/lucene-3.6.0/lucene/contrib/instantiated/src/java/org/apache/lucene/store/instantiated/
H A DInstantiatedTermPositions.java34 public byte[] getPayload(byte[] data, int offset) throws IOException { method in class:InstantiatedTermPositions
/lucene-3.6.0/solr/core/src/test/org/apache/solr/handler/
H A DAnalysisRequestHandlerTestBase.java45 if (info.getPayload() != null) {
46 assertEquals(info.getPayload(), token.get("payload"));
107 public String getPayload() { method in class:AnalysisRequestHandlerTestBase.TokenInfo
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/search/spans/
H A DJustCompileSearchSpans.java66 public Collection<byte[]> getPayload() throws IOException { method in class:JustCompileSearchSpans.JustCompileSpans
99 public Collection<byte[]> getPayload() throws IOException { method in class:JustCompileSearchSpans.JustCompilePayloadSpans
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/search/spans/
H A DJustCompileSearchSpans.java66 public Collection<byte[]> getPayload() throws IOException { method in class:JustCompileSearchSpans.JustCompileSpans
99 public Collection<byte[]> getPayload() throws IOException { method in class:JustCompileSearchSpans.JustCompilePayloadSpans
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/
H A DToken.java50 {@link TermPositions#getPayload(byte[], int)} to retrieve the payloads from the index.
345 public Payload getPayload() { method in class:Token
/lucene-3.6.0/lucene/contrib/misc/src/java/org/apache/lucene/index/
H A DIndexSorter.java155 public byte[] getPayload(byte[] data, int offset) throws IOException { method in class:IndexSorter.SortedTermPositions

Completed in 236 milliseconds