- change(String, Object) - Method in interface com.mysql.cj.xdevapi.ModifyStatement
-
Add an update to the statement setting the field, if it exists at the document path, to the given value.
- clearArgs() - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Remove all current bindings.
- clearBindings() - Method in interface com.mysql.cj.xdevapi.Statement
-
Clear all bindings for this statement.
- Client - Interface in com.mysql.cj.xdevapi
-
X DevAPI class encapsulating a Session pooling functionality.
- Client.ClientProperty - Enum in com.mysql.cj.xdevapi
-
- ClientFactory - Class in com.mysql.cj.xdevapi
-
ClientFactory is used for creation of
Client
instances.
- ClientFactory() - Constructor for class com.mysql.cj.xdevapi.ClientFactory
-
- ClientProperty(String) - Constructor for enum com.mysql.cj.xdevapi.Client.ClientProperty
-
- close() - Method in interface com.mysql.cj.xdevapi.Client
-
Close Client
.
- close() - Method in interface com.mysql.cj.xdevapi.Session
-
Close this session.
- Collection - Interface in com.mysql.cj.xdevapi
-
Representation of a document collection.
- Column - Interface in com.mysql.cj.xdevapi
-
- com.mysql.cj.xdevapi - package com.mysql.cj.xdevapi
-
Java classes for X DevAPI support.
- commit() - Method in interface com.mysql.cj.xdevapi.Session
-
Commit the transaction.
- count() - Method in interface com.mysql.cj.xdevapi.Collection
-
Query the number of documents in this collection.
- count() - Method in interface com.mysql.cj.xdevapi.FetchResult
-
How many items are in this result? This method forces internal buffering of the entire result.
- count() - Method in interface com.mysql.cj.xdevapi.Table
-
Query the number of rows in this table.
- createCollection(String) - Method in interface com.mysql.cj.xdevapi.Schema
-
Create a new collection.
- createCollection(String, boolean) - Method in interface com.mysql.cj.xdevapi.Schema
-
Create a new collection if it does not already exist on the server.
- createCollection(String, Schema.CreateCollectionOptions) - Method in interface com.mysql.cj.xdevapi.Schema
-
Create a new collection.
- CreateCollectionOptions() - Constructor for class com.mysql.cj.xdevapi.Schema.CreateCollectionOptions
-
- createIndex(String, DbDoc) - Method in interface com.mysql.cj.xdevapi.Collection
-
Create a new statement defining the creation of an index on this collection.
- createIndex(String, String) - Method in interface com.mysql.cj.xdevapi.Collection
-
Create a new statement defining the creation of an index on this collection.
- createSchema(String) - Method in interface com.mysql.cj.xdevapi.Session
-
Create and return a new schema with the name given by name.
- createSchema(String, boolean) - Method in interface com.mysql.cj.xdevapi.Session
-
Create and return a new schema with the name given by name.
- getAffectedItemsCount() - Method in interface com.mysql.cj.xdevapi.Result
-
Get the count of affected items from manipulation statements.
- getArgs() - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Get binding arguments.
- getAutoIncrementValue() - Method in interface com.mysql.cj.xdevapi.InsertResult
-
Get the auto-increment value if one was generated from a row insert statement.
- getAutoIncrementValue() - Method in interface com.mysql.cj.xdevapi.SqlResult
-
- getBigDecimal(String) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column `fieldName' as a decimal value.
- getBigDecimal(int) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column at position `pos' (starting at 0) as a decimal value.
- getBoolean(String) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column `fieldName' as a boolean value.
- getBoolean(int) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column at position `pos' (starting at 0) as a boolean value.
- getByte(String) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column `fieldName' as a byte value.
- getByte(int) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column at position `pos' (starting at 0) as a byte value.
- getCharacterSetName() - Method in interface com.mysql.cj.xdevapi.Column
-
Get character set name for the column value.
- getClient(String, String) - Method in class com.mysql.cj.xdevapi.ClientFactory
-
Creates a
Client
object which provides a Session pooling functionality.
- getClient(String, Properties) - Method in class com.mysql.cj.xdevapi.ClientFactory
-
Creates a
Client
object that provides a Session pooling functionality.
- getCollationName() - Method in interface com.mysql.cj.xdevapi.Column
-
Get collation name for the column value.
- getCollection() - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Get X Protocol Collection object.
- getCollection(String) - Method in interface com.mysql.cj.xdevapi.Schema
-
Retrieve a reference to the named collection.
- getCollection(String, boolean) - Method in interface com.mysql.cj.xdevapi.Schema
-
Retrieve a reference to the named collection hinting that an exception should be thrown if the collection is not known to the server.
- getCollectionAsTable(String) - Method in interface com.mysql.cj.xdevapi.Schema
-
Retrieve a reference to the named collection using the table API.
- getCollections() - Method in interface com.mysql.cj.xdevapi.Schema
-
Retrieve the set of collections existing in this schema.
- getCollections(String) - Method in interface com.mysql.cj.xdevapi.Schema
-
Retrieve the set of collections existing in this schema and matching the given pattern.
- getColumnCount() - Method in interface com.mysql.cj.xdevapi.RowResult
-
Count of columns.
- getColumnLabel() - Method in interface com.mysql.cj.xdevapi.Column
-
Get alias of this column.
- getColumnName() - Method in interface com.mysql.cj.xdevapi.Column
-
Get name of this column.
- getColumnNames() - Method in interface com.mysql.cj.xdevapi.RowResult
-
Names of columns.
- getColumns() - Method in interface com.mysql.cj.xdevapi.RowResult
-
Metadata.
- getCriteria() - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Get the search criteria.
- getDate(String) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column `fieldName' as a
Date
value.
- getDate(int) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column at position `pos' (starting at 0) as a byte value.
- getDbDoc(String) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column `fieldName' as a DbDoc value.
- getDbDoc(int) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column at position `pos' (starting at 0) as a DbDoc value.
- getDefaultSchema() - Method in interface com.mysql.cj.xdevapi.Session
-
Retrieve the default schema name, which might have been configured at the time of connection.
- getDefaultSchemaName() - Method in interface com.mysql.cj.xdevapi.Session
-
Retrieve the default schema name, which might have been configured at the time of connection.
- getDouble(String) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column `fieldName' as a double value.
- getDouble(int) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column at position `pos' (starting at 0) as a double value.
- getExpressionString() - Method in class com.mysql.cj.xdevapi.Expression
-
Get the string form of this expression
- getFields() - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Get X Protocol Projection objects.
- getFilterParams() - Method in interface com.mysql.cj.xdevapi.SelectStatement
-
- getFractionalDigits() - Method in interface com.mysql.cj.xdevapi.Column
-
Get number of fractional digits in this column's value.
- getGeneratedIds() - Method in interface com.mysql.cj.xdevapi.AddResult
-
Get a list of document ids generated in the server for the documents added by collection.add().
- getGrouping() - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Get X Protocol Expr objects for groupBy.
- getGroupingCriteria() - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Get X Protocol Expr objects for grouping criteria.
- getInt(String) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column `fieldName' as an integer value.
- getInt(int) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column at position `pos' (starting at 0) as an integer value.
- getKeyName() - Method in enum com.mysql.cj.xdevapi.Client.ClientProperty
-
- getLength() - Method in interface com.mysql.cj.xdevapi.Column
-
Get this column's length.
- getLevel() - Method in class com.mysql.cj.xdevapi.Schema.Validation
-
- getLimit() - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Get max number of rows to filter.
- getLock() - Method in interface com.mysql.cj.xdevapi.FilterParams
-
- getLockOption() - Method in interface com.mysql.cj.xdevapi.FilterParams
-
- getLong(String) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column `fieldName' as a long value.
- getLong(int) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column at position `pos' (starting at 0) as a long value.
- getName() - Method in interface com.mysql.cj.xdevapi.DatabaseObject
-
Retrieve the name of the database object represented by the Java object.
- getOffset() - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Get number of rows to skip before finding others.
- getOne(String) - Method in interface com.mysql.cj.xdevapi.Collection
-
Return the document with the given id.
- getOrder() - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Get X Protocol Order objects.
- getReuseExisting() - Method in class com.mysql.cj.xdevapi.Schema.CreateCollectionOptions
-
- getSchema() - Method in interface com.mysql.cj.xdevapi.DatabaseObject
-
Retrieve the schema owning this database object.
- getSchema() - Method in class com.mysql.cj.xdevapi.Schema.Validation
-
- getSchema(String) - Method in interface com.mysql.cj.xdevapi.Session
-
Retrieve the Schema corresponding to name.
- getSchemaName() - Method in interface com.mysql.cj.xdevapi.Column
-
- getSchemas() - Method in interface com.mysql.cj.xdevapi.Session
-
Retrieve the list of Schema objects for which the current user has access.
- getSession() - Method in interface com.mysql.cj.xdevapi.Client
-
Get Session
from pool or the new one.
- getSession() - Method in interface com.mysql.cj.xdevapi.DatabaseObject
-
Retrieve the session owning the given schema object.
- getSession(ConnectionUrl) - Method in class com.mysql.cj.xdevapi.SessionFactory
-
- getSession(String) - Method in class com.mysql.cj.xdevapi.SessionFactory
-
- getSession(Properties) - Method in class com.mysql.cj.xdevapi.SessionFactory
-
Creates a
Session
using the information contained in the given properties.
- getString(String) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column `fieldName' as a string value.
- getString(int) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column at position `pos' (starting at 0) as a string value.
- getTable(String) - Method in interface com.mysql.cj.xdevapi.Schema
-
Retrieve a reference to the named table.
- getTable(String, boolean) - Method in interface com.mysql.cj.xdevapi.Schema
-
Retrieve a reference to the named table hinting that an exception should be thrown if the collection is not known to the server.
- getTableLabel() - Method in interface com.mysql.cj.xdevapi.Column
-
- getTableName() - Method in interface com.mysql.cj.xdevapi.Column
-
- getTables() - Method in interface com.mysql.cj.xdevapi.Schema
-
Retrieve the set of tables existing in this schema.
- getTables(String) - Method in interface com.mysql.cj.xdevapi.Schema
-
Retrieve the set of tables existing in this schema and matching the given pattern.
- getTime(String) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column `fieldName' as a
Time
value.
- getTime(int) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column at position `pos' (starting at 0) as a byte value.
- getTimestamp(String) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column `fieldName' as a
Timestamp
value.
- getTimestamp(int) - Method in interface com.mysql.cj.xdevapi.Row
-
Retrieve the value for column at position `pos' (starting at 0) as a byte value.
- getType() - Method in interface com.mysql.cj.xdevapi.Column
-
- getUri() - Method in interface com.mysql.cj.xdevapi.Session
-
Get the URL used to create this session.
- getValidation() - Method in class com.mysql.cj.xdevapi.Schema.CreateCollectionOptions
-
- getValidation() - Method in class com.mysql.cj.xdevapi.Schema.ModifyCollectionOptions
-
- getWarnings() - Method in interface com.mysql.cj.xdevapi.Result
-
Get warnings generated during statement execution.
- getWarningsCount() - Method in interface com.mysql.cj.xdevapi.Result
-
Get the number of warnings generated during statement execution.
- groupBy(String...) - Method in interface com.mysql.cj.xdevapi.FindStatement
-
Add/replace the aggregation fields for this query.
- groupBy(String...) - Method in interface com.mysql.cj.xdevapi.SelectStatement
-
Add/replace the aggregation fields for this query.
- insert() - Method in interface com.mysql.cj.xdevapi.Table
-
Create an insert statement using the list of all columns in the table.
- insert(String...) - Method in interface com.mysql.cj.xdevapi.Table
-
Create an insert statement using the given list columns.
- insert(Map<String, Object>) - Method in interface com.mysql.cj.xdevapi.Table
-
Create an insert statement using the given key/value pairs.
- InsertResult - Interface in com.mysql.cj.xdevapi
-
A result from the table.insert() statement.
- InsertStatement - Interface in com.mysql.cj.xdevapi
-
A statement INSERTing new row(s) into a table.
- isAutoIncrement() - Method in interface com.mysql.cj.xdevapi.Column
-
Checks if this is an auto increment column.
- isNullable() - Method in interface com.mysql.cj.xdevapi.Column
-
Checks if column can contain null values.
- isNumberSigned() - Method in interface com.mysql.cj.xdevapi.Column
-
Checks if value represents a signed number.
- isOpen() - Method in interface com.mysql.cj.xdevapi.Session
-
Is this session open?
- isPadded() - Method in interface com.mysql.cj.xdevapi.Column
-
Checks if the value has a padding.
- isPartKey() - Method in interface com.mysql.cj.xdevapi.Column
-
Checks if this column is a part of key.
- isPrimaryKey() - Method in interface com.mysql.cj.xdevapi.Column
-
Checks if this is a primary key column.
- isRelational() - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Are relational columns identifiers allowed?
- isUniqueKey() - Method in interface com.mysql.cj.xdevapi.Column
-
Checks if this is a unique key column.
- isUpsert() - Method in interface com.mysql.cj.xdevapi.AddStatement
-
Check the upsert flag.
- isView() - Method in interface com.mysql.cj.xdevapi.Table
-
Check if the underlying object is a view or not.
- iterator() - Method in interface com.mysql.cj.xdevapi.FetchResult
-
Create an iterator over all elements of the result.
- level - Variable in class com.mysql.cj.xdevapi.Schema.Validation
-
- limit(long) - Method in interface com.mysql.cj.xdevapi.DeleteStatement
-
Add/replace the row limit for the deletion.
- limit(long) - Method in interface com.mysql.cj.xdevapi.FindStatement
-
Add/replace the document limit for this query.
- limit(long) - Method in interface com.mysql.cj.xdevapi.ModifyStatement
-
Add/replace the document limit for this statement.
- limit(long) - Method in interface com.mysql.cj.xdevapi.RemoveStatement
-
Add/replace the document limit for the removal.
- limit(long) - Method in interface com.mysql.cj.xdevapi.SelectStatement
-
Add/replace the row limit for this query.
- limit(long) - Method in interface com.mysql.cj.xdevapi.UpdateStatement
-
Add/replace the row limit for this statement.
- LockContention() - Constructor for enum com.mysql.cj.xdevapi.Statement.LockContention
-
- lockExclusive() - Method in interface com.mysql.cj.xdevapi.FindStatement
-
Locks matching rows exclusively so no other transactions can read or write to them.
- lockExclusive(Statement.LockContention) - Method in interface com.mysql.cj.xdevapi.FindStatement
-
Locks matching rows exclusively so no other transactions can read or write to them, using the provided lock contention option.
- lockExclusive() - Method in interface com.mysql.cj.xdevapi.SelectStatement
-
Locks matching rows exclusively so no other transactions can read or write to them.
- lockExclusive(Statement.LockContention) - Method in interface com.mysql.cj.xdevapi.SelectStatement
-
Locks matching rows exclusively so no other transactions can read or write to them, using the provided lock contention option.
- lockShared() - Method in interface com.mysql.cj.xdevapi.FindStatement
-
Locks matching rows against updates.
- lockShared(Statement.LockContention) - Method in interface com.mysql.cj.xdevapi.FindStatement
-
Locks matching rows against updates using the provided lock contention option.
- lockShared() - Method in interface com.mysql.cj.xdevapi.SelectStatement
-
Locks matching rows against updates.
- lockShared(Statement.LockContention) - Method in interface com.mysql.cj.xdevapi.SelectStatement
-
Locks matching rows against updates using the provided lock contention option.
- Schema - Interface in com.mysql.cj.xdevapi
-
A client-side representation of a database schema.
- schema - Variable in class com.mysql.cj.xdevapi.Schema.Validation
-
- Schema.CreateCollectionOptions - Class in com.mysql.cj.xdevapi
-
- Schema.ModifyCollectionOptions - Class in com.mysql.cj.xdevapi
-
- Schema.Validation - Class in com.mysql.cj.xdevapi
-
- Schema.Validation.ValidationLevel - Enum in com.mysql.cj.xdevapi
-
Defines how validation options are applied.
- select(String...) - Method in interface com.mysql.cj.xdevapi.Table
-
Create a new select statement using the given projections.
- SelectStatement - Interface in com.mysql.cj.xdevapi
-
A statement representing a SELECT query.
- serialVersionUID - Static variable in exception com.mysql.cj.xdevapi.XDevAPIError
-
- Session - Interface in com.mysql.cj.xdevapi
-
X DevAPI introduces a new, high-level database connection concept that is called Session.
- SessionFactory - Class in com.mysql.cj.xdevapi
-
SessionFactory is used for creation of sessions.
- SessionFactory() - Constructor for class com.mysql.cj.xdevapi.SessionFactory
-
- set(String, Object) - Method in interface com.mysql.cj.xdevapi.ModifyStatement
-
Add an update to the statement setting the field as the document path to the given value for all documents matching the search criteria.
- set(Map<String, Object>) - Method in interface com.mysql.cj.xdevapi.UpdateStatement
-
Add the given set of updates to the statement.
- set(String, Object) - Method in interface com.mysql.cj.xdevapi.UpdateStatement
-
Add the given update to the statement setting field to value for all rows matching the search criteria.
- setCriteria(String) - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Parse criteriaString into X Protocol Expr object.
- setFields(String...) - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Parse projection expressions into X Protocol Projection objects.
- setGrouping(String...) - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Parse groupBy expressions into X Protocol Expr objects.
- setGroupingCriteria(String) - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Parse having expressions into X Protocol Expr objects.
- setLevel(Schema.Validation.ValidationLevel) - Method in class com.mysql.cj.xdevapi.Schema.Validation
-
- setLimit(Long) - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Set maximum rows to find.
- setLock(FilterParams.RowLock) - Method in interface com.mysql.cj.xdevapi.FilterParams
-
- setLockOption(FilterParams.RowLockOptions) - Method in interface com.mysql.cj.xdevapi.FilterParams
-
- setOffset(Long) - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Set number of rows to skip before finding others.
- setOrder(String...) - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Parse order expressions into X Protocol Order objects.
- setReuseExisting(boolean) - Method in class com.mysql.cj.xdevapi.Schema.CreateCollectionOptions
-
- setSavepoint() - Method in interface com.mysql.cj.xdevapi.Session
-
- setSavepoint(String) - Method in interface com.mysql.cj.xdevapi.Session
-
Creates or replaces a transaction savepoint with the given name.
- setSchema(String) - Method in class com.mysql.cj.xdevapi.Schema.Validation
-
- setUpsert(boolean) - Method in interface com.mysql.cj.xdevapi.AddStatement
-
Set upsert flag on this statement.
- setValidation(Schema.Validation) - Method in class com.mysql.cj.xdevapi.Schema.CreateCollectionOptions
-
- setValidation(Schema.Validation) - Method in class com.mysql.cj.xdevapi.Schema.ModifyCollectionOptions
-
- skip(long) - Method in interface com.mysql.cj.xdevapi.FindStatement
-
- sort(String...) - Method in interface com.mysql.cj.xdevapi.FindStatement
-
Add/replace the order specification for this query.
- sort(String...) - Method in interface com.mysql.cj.xdevapi.ModifyStatement
-
Add/replace the order specification for this statement.
- sort(String...) - Method in interface com.mysql.cj.xdevapi.RemoveStatement
-
Add/replace the order specification for the removal.
- sql(String) - Method in interface com.mysql.cj.xdevapi.Session
-
Create a native SQL command.
- SqlResult - Interface in com.mysql.cj.xdevapi
-
A result from a SQL statement which may have several sets of data following by a DML result.
- SqlStatement - Interface in com.mysql.cj.xdevapi
-
A statement representing a raw SQL command.
- startTransaction() - Method in interface com.mysql.cj.xdevapi.Session
-
Start a new transaction.
- Statement<STMT_T,RES_T> - Interface in com.mysql.cj.xdevapi
-
A statement is a query or state-affecting command against a database that returns a result.
- Statement.LockContention - Enum in com.mysql.cj.xdevapi
-
The lock contention options for the locking modes available.
- supportsOffset() - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Whether offset clause is supported in the statement or not.
- validation - Variable in class com.mysql.cj.xdevapi.Schema.CreateCollectionOptions
-
- validation - Variable in class com.mysql.cj.xdevapi.Schema.ModifyCollectionOptions
-
- Validation() - Constructor for class com.mysql.cj.xdevapi.Schema.Validation
-
- ValidationLevel() - Constructor for enum com.mysql.cj.xdevapi.Schema.Validation.ValidationLevel
-
- valueOf(String) - Static method in enum com.mysql.cj.xdevapi.Client.ClientProperty
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.mysql.cj.xdevapi.DatabaseObject.DbObjectStatus
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.mysql.cj.xdevapi.DatabaseObject.DbObjectType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.mysql.cj.xdevapi.FilterParams.RowLock
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.mysql.cj.xdevapi.FilterParams.RowLockOptions
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.mysql.cj.xdevapi.Schema.Validation.ValidationLevel
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.mysql.cj.xdevapi.Statement.LockContention
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.mysql.cj.xdevapi.Type
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.mysql.cj.xdevapi.UpdateType
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum com.mysql.cj.xdevapi.Client.ClientProperty
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.mysql.cj.xdevapi.DatabaseObject.DbObjectStatus
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.mysql.cj.xdevapi.DatabaseObject.DbObjectType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.mysql.cj.xdevapi.FilterParams.RowLock
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.mysql.cj.xdevapi.FilterParams.RowLockOptions
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values(List<Object>) - Method in interface com.mysql.cj.xdevapi.InsertStatement
-
Add a row (sequence of values) to this statement.
- values(Object...) - Method in interface com.mysql.cj.xdevapi.InsertStatement
-
Add a row (sequence of values) to this statement.
- values() - Static method in enum com.mysql.cj.xdevapi.Schema.Validation.ValidationLevel
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.mysql.cj.xdevapi.Statement.LockContention
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.mysql.cj.xdevapi.Type
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.mysql.cj.xdevapi.UpdateType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- verifyAllArgsBound() - Method in interface com.mysql.cj.xdevapi.FilterParams
-
Verify that all arguments are bound.