Classes
The following classes are available globally.
-
A meta property expression.
See moreDeclaration
Swift
public class MetaExpression: Expression
-
A query data source. used for specifiying the data source for your query. The current data source supported is the database.
See moreDeclaration
Swift
public class DataSource
-
A database data source. You could also create an alias data source by calling the as(alias) method with an alias name.
See moreDeclaration
Swift
public class DatabaseSource: DataSource
-
The Satisfies class represents the SATISFIES clause object in a quantified operator (ANY/ANY AND EVERY/EVERY
See moreIN SATISFIES ). The SATISFIES clause is used for specifying an expression that will be used to evaluate each item in the array. Declaration
Swift
public class ArrayExpressionSatisfies
-
MutableFragment provides read and write access to data value. MutableFragment also provides subscript access by either key or index to the nested values which are wrapped by MutableFragment objects.
See moreDeclaration
Swift
public class MutableFragment: Fragment, MutableDictionaryFragment, MutableArrayFragment
-
An Ordering represents a single ordering component in the query ORDER BY clause.
See moreDeclaration
Swift
public class Ordering
-
A replicator for replicating document changes between a local database and a target database. The replicator can be bidirectional or either push or pull. The replicator can also be one-short or continuous. The replicator runs asynchronously, so observe the status property to be notified of progress.
See moreDeclaration
Swift
public final class Replicator
-
DocumentFragment provides access to a document object. DocumentFragment also provides subscript access by either key or index to the data values of the document which are wrapped by Fragment objects.
See moreDeclaration
Swift
public class DocumentFragment: DictionaryFragment
-
Result represents a single row in the query result. The projecting result value can be accessed either by using a zero based index or by a key corresponding to the SelectResult objects given when constructing the Query object.
A key used for accessing the projecting result value could be one of the followings:
- The alias name of the SelectResult object.
- The last component of the keypath or property name of the property expression used when creating the SelectResult object.
- The provision key in $1, $2, …$N format for the SelectResult that doesn’t have an alias name specified or is not a property expression such as an aggregate function expression (e.g. count(), avg(), min(), max(), sum() and etc). The number suffix after the ‘$’ character is a running number starting from one.
Declaration
Swift
public class Result : ArrayProtocol, DictionaryProtocol
-
A Join component representing a single JOIN clause in the query statement.
See moreDeclaration
Swift
public class Join
-
Undocumented
See more
-
Function provies array functions.
See moreDeclaration
Swift
public class ArrayFunction
-
Full-text expression.
See moreDeclaration
Swift
public class FullTextExpression
-
The In class represents the IN clause object in a quantified operator (ANY/ANY AND EVERY/EVERY
See moreIN SATISFIES ). The IN clause is used for specifying an array object or an expression evaluated as an array object, each item of which will be evaluated against the satisfies expression. Declaration
Swift
public class ArrayExpressionIn
-
Fragment provides readonly access to data value. Fragment also provides subscript access by either key or index to the nested values which are wrapped by Fragment objects.
See moreDeclaration
Swift
public class Fragment: FragmentProtocol, ArrayFragment, DictionaryFragment
-
A database query. A Query instance can be constructed by calling one of the select class methods.
See moreDeclaration
Swift
public class Query
-
ResultSet is a result returned from a query.
See moreDeclaration
Swift
public class ResultSet : Sequence, IteratorProtocol
-
A Limit component represents the LIMIT clause of the query statement.
Declaration
Swift
public class Limit: Query
-
MutableDictionaryObject provides access to dictionary data.
See moreDeclaration
Swift
public class MutableDictionaryObject: DictionaryObject, MutableDictionaryProtocol
-
DictionaryObject provides readonly access to dictionary data.
See moreDeclaration
Swift
public class DictionaryObject: DictionaryProtocol, Equatable, Hashable
-
Index represents an index which could be a value index for regular queries or full-text index for full-text queries (using the match operator).
See moreDeclaration
Swift
public class Index
-
Full-text search index item.
See moreDeclaration
Swift
public class FullTextIndexItem
-
Full-text function.
See moreDeclaration
Swift
public class FullTextFunction
-
ArrayObject provides readonly access to array data.
See moreDeclaration
Swift
public class ArrayObject: ArrayProtocol, Equatable, Hashable
-
Array expression.
See moreDeclaration
Swift
public class ArrayExpression
-
An Expression represents an expression used for constructing a query statement.
See moreDeclaration
Swift
public class Expression
-
Collation defines how strings are compared and is used when creating a COLLATE expression. The COLLATE expression can be used in the WHERE clause when comparing two strings or in the ORDER BY clause when specifying how the order of the query results. CouchbaseLite provides two types of the Collation, ASCII and Unicode. Without specifying the COLLATE expression Couchbase Lite will use the ASCII with case sensitive collation by default.
See moreDeclaration
Swift
public class Collation
-
MutableArrayObject provides access to array data.
See moreDeclaration
Swift
public class MutableArrayObject: ArrayObject, MutableArrayProtocol
-
Couchbase Lite document. The Document is immutable.
See moreDeclaration
Swift
public class Document : DictionaryProtocol, Equatable, Hashable
-
SelectResult represents a signle return value of the query statement.
See moreDeclaration
Swift
public class SelectResult