Package | Description |
---|---|
com.datastax.driver.core |
The main package for the DataStax Java driver for Cassandra.
|
Modifier and Type | Method and Description |
---|---|
FunctionMetadata |
AggregateMetadata.getFinalFunc()
Returns the final function of this aggregate.
|
FunctionMetadata |
KeyspaceMetadata.getFunction(String name,
Collection<DataType> argumentTypes)
Returns the definition of a function in this keyspace.
|
FunctionMetadata |
KeyspaceMetadata.getFunction(String name,
DataType... argumentTypes)
Returns the definition of a function in this keyspace.
|
FunctionMetadata |
AggregateMetadata.getStateFunc()
Returns the state function of this aggregate.
|
Modifier and Type | Method and Description |
---|---|
Collection<FunctionMetadata> |
KeyspaceMetadata.getFunctions()
Returns the functions defined in this keyspace.
|
Modifier and Type | Method and Description |
---|---|
void |
SchemaChangeListenerBase.onFunctionAdded(FunctionMetadata function) |
void |
SchemaChangeListener.onFunctionAdded(FunctionMetadata function)
Called when a user-defined function has been added.
|
void |
SchemaChangeListenerBase.onFunctionChanged(FunctionMetadata current,
FunctionMetadata previous) |
void |
SchemaChangeListener.onFunctionChanged(FunctionMetadata current,
FunctionMetadata previous)
Called when a user-defined function has changed.
|
void |
SchemaChangeListenerBase.onFunctionRemoved(FunctionMetadata function) |
void |
SchemaChangeListener.onFunctionRemoved(FunctionMetadata function)
Called when a user-defined function has been removed.
|
Copyright © 2012–2017. All rights reserved.