Class RowLocation
- java.lang.Object
-
- com.couchbase.client.java.search.result.rows.RowLocation
-
@Volatile public class RowLocation extends Object
A FTS result row location indicates at which position a given term occurs inside a given field. In case the field is an array,arrayPositions
will indicate which index/indices in the array contain the term.- Since:
- 2.3.0
- Author:
- Simon Baslé, Michael Nitschinger
-
-
Constructor Summary
Constructors Constructor Description RowLocation(String field, String term, long pos, long start, long end)
RowLocation(String field, String term, long pos, long start, long end, long[] arrayPositions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long[]
arrayPositions()
long
end()
boolean
equals(Object o)
String
field()
int
hashCode()
long
pos()
long
start()
String
term()
String
toString()
-