Class SearchRowLocations
- java.lang.Object
-
- com.couchbase.client.java.search.result.SearchRowLocations
-
@Volatile public class SearchRowLocations extends Object
A default implementation of aSearchRowLocations
.- Since:
- 2.3.0
- Author:
- Simon Baslé, Michael Nitschinger
-
-
Constructor Summary
Constructors Constructor Description SearchRowLocations()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
fields()
static SearchRowLocations
from(JsonObject locationsJson)
Parses a FTS JSON representation of aSearchRowLocations
.List<SearchRowLocation>
get(String field)
List<SearchRowLocation>
get(String field, String term)
List<SearchRowLocation>
getAll()
Set<String>
terms()
List<String>
termsFor(String field)
String
toString()
-
-
-
Method Detail
-
get
public List<SearchRowLocation> get(String field)
-
get
public List<SearchRowLocation> get(String field, String term)
-
getAll
public List<SearchRowLocation> getAll()
-
from
public static SearchRowLocations from(JsonObject locationsJson)
Parses a FTS JSON representation of aSearchRowLocations
.
-
-