Package com.couchbase.client.java.kv
Class LookupInSpec
- java.lang.Object
-
- com.couchbase.client.java.kv.LookupInSpec
-
- Direct Known Subclasses:
LookupInSpecFull
,LookupInSpecStandard
public abstract class LookupInSpec extends Object
-
-
Constructor Summary
Constructors Constructor Description LookupInSpec()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static LookupInSpecStandard
count(String path)
static LookupInSpecStandard
exists(String path)
abstract SubdocGetRequest.Command
export()
static LookupInSpecStandard
get(String path)
static LookupInSpecFull
getFullDocument()
Deprecated.use LookupInSpec.get with a blank path ("") instead
-
-
-
Method Detail
-
export
@Internal public abstract SubdocGetRequest.Command export()
-
get
public static LookupInSpecStandard get(String path)
-
getFullDocument
@Deprecated @Internal public static LookupInSpecFull getFullDocument()
Deprecated.use LookupInSpec.get with a blank path ("") instead
-
exists
public static LookupInSpecStandard exists(String path)
-
count
public static LookupInSpecStandard count(String path)
-
-