Package | Description |
---|---|
org.apache.metamodel |
Root package for MetaModel
|
org.apache.metamodel.convert |
DataContext decorator for implicit conversion of value types after querying and before insertion.
|
org.apache.metamodel.couchdb |
Module package for CouchDB support
|
org.apache.metamodel.csv |
Module package for Comma Separated Values (CSV) files
|
org.apache.metamodel.dynamodb | |
org.apache.metamodel.elasticsearch | |
org.apache.metamodel.elasticsearch.nativeclient | |
org.apache.metamodel.elasticsearch.rest | |
org.apache.metamodel.excel |
Module package for MS Excel spreadsheet files
|
org.apache.metamodel.hbase |
Module package for Apache HBase
|
org.apache.metamodel.intercept | |
org.apache.metamodel.jdbc |
Module package for JDBC compliant databases
|
org.apache.metamodel.kafka | |
org.apache.metamodel.mongodb.mongo2 |
Module package for MongoDB support
|
org.apache.metamodel.pojo | |
org.apache.metamodel.salesforce |
Modifier and Type | Method and Description |
---|---|
static UpdateableDataContext |
DataContextFactory.createCouchDbDataContext(String hostname,
Integer port,
String username,
String password)
Creates a new CouchDB datacontext.
|
static UpdateableDataContext |
DataContextFactory.createCouchDbDataContext(String hostname,
Integer port,
String username,
String password,
SimpleTableDef[] tableDefs)
Creates a new CouchDB datacontext.
|
static UpdateableDataContext |
DataContextFactory.createCsvDataContext(File file)
Creates a DataContext based on a CSV file
|
static UpdateableDataContext |
DataContextFactory.createCsvDataContext(File file,
char separatorChar,
char quoteChar)
Creates a DataContext based on a CSV file
|
static UpdateableDataContext |
DataContextFactory.createCsvDataContext(File file,
char separatorChar,
char quoteChar,
String encoding)
Creates a DataContext based on a CSV file
|
static UpdateableDataContext |
DataContextFactory.createCsvDataContext(File file,
CsvConfiguration configuration)
Creates a DataContext based on a CSV file
|
static UpdateableDataContext |
DataContextFactory.createElasticSearchDataContext(org.elasticsearch.client.Client client,
String indexName)
Creates a new ElasticSearch datacontext.
|
static UpdateableDataContext |
DataContextFactory.createElasticSearchDataContext(ElasticSearchRestClient client,
String indexName)
Creates a new JSON-based ElasticSearch datacontext.
|
static UpdateableDataContext |
DataContextFactory.createExcelDataContext(File file)
Creates a DataContext based on an Excel spreadsheet file
|
static UpdateableDataContext |
DataContextFactory.createExcelDataContext(File file,
ExcelConfiguration configuration)
Creates a DataContet based on an Excel spreadsheet file
|
static UpdateableDataContext |
DataContextFactory.createJdbcDataContext(Connection connection)
Creates a DataContext based on a JDBC connection
|
static UpdateableDataContext |
DataContextFactory.createJdbcDataContext(Connection connection,
String catalogName)
Creates a DataContext based on a JDBC connection
|
static UpdateableDataContext |
DataContextFactory.createJdbcDataContext(Connection connection,
String catalogName,
TableType[] tableTypes)
Creates a DataContext based on a JDBC connection
|
static UpdateableDataContext |
DataContextFactory.createJdbcDataContext(Connection connection,
TableType... tableTypes)
Creates a DataContext based on a JDBC connection
|
static UpdateableDataContext |
DataContextFactory.createJdbcDataContext(DataSource ds)
Creates a DataContext based on a JDBC datasource
|
static UpdateableDataContext |
DataContextFactory.createJdbcDataContext(DataSource ds,
String catalogName)
Creates a DataContext based on a JDBC datasource
|
static UpdateableDataContext |
DataContextFactory.createJdbcDataContext(DataSource ds,
String catalogName,
TableType[] tableTypes)
Creates a DataContext based on a JDBC datasource
|
static UpdateableDataContext |
DataContextFactory.createJdbcDataContext(DataSource ds,
TableType... tableTypes)
Creates a DataContext based on a JDBC datasource
|
static UpdateableDataContext |
DataContextFactory.createMongoDbDataContext(String hostname,
Integer port,
String databaseName,
String username,
char[] password)
Creates a new MongoDB datacontext.
|
static UpdateableDataContext |
DataContextFactory.createMongoDbDataContext(String hostname,
Integer port,
String databaseName,
String username,
char[] password,
SimpleTableDef[] tableDefs)
Creates a new MongoDB datacontext.
|
Modifier and Type | Method and Description |
---|---|
static UpdateableDataContext |
Converters.addTypeConverter(UpdateableDataContext dataContext,
Column column,
TypeConverter<?,?> converter)
Adds a type converter to a specific column in the
DataContext . |
static UpdateableDataContext |
Converters.addTypeConverters(UpdateableDataContext dataContext,
Map<Column,TypeConverter<?,?>> converters)
Adds a collection of type converters to specific columns in the
DataContext |
Modifier and Type | Method and Description |
---|---|
static UpdateableDataContext |
Converters.addTypeConverter(UpdateableDataContext dataContext,
Column column,
TypeConverter<?,?> converter)
Adds a type converter to a specific column in the
DataContext . |
static UpdateableDataContext |
Converters.addTypeConverters(UpdateableDataContext dataContext,
Map<Column,TypeConverter<?,?>> converters)
Adds a collection of type converters to specific columns in the
DataContext |
Modifier and Type | Class and Description |
---|---|
class |
CouchDbDataContext
DataContext implementation for CouchDB
|
Modifier and Type | Class and Description |
---|---|
class |
CsvDataContext
DataContext implementation for reading CSV files.
|
Modifier and Type | Class and Description |
---|---|
class |
DynamoDbDataContext
DataContext implementation for Amazon DynamoDB.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractElasticSearchDataContext |
Modifier and Type | Class and Description |
---|---|
class |
ElasticSearchDataContext
DataContext implementation for ElasticSearch analytics engine.
|
Modifier and Type | Class and Description |
---|---|
class |
ElasticSearchRestDataContext
DataContext implementation for ElasticSearch analytics engine.
|
Modifier and Type | Class and Description |
---|---|
class |
ExcelDataContext
DataContext implementation to use for Excel spreadsheets. |
Modifier and Type | Class and Description |
---|---|
class |
HBaseDataContext
MetaModel adaptor for Apache HBase.
|
Modifier and Type | Class and Description |
---|---|
class |
InterceptableDataContext |
Modifier and Type | Method and Description |
---|---|
UpdateableDataContext |
InterceptableDataContext.refreshSchemas() |
Modifier and Type | Class and Description |
---|---|
class |
JdbcDataContext
DataContextStrategy to use for JDBC-compliant databases
|
Modifier and Type | Class and Description |
---|---|
class |
KafkaDataContext<K,V> |
Modifier and Type | Class and Description |
---|---|
class |
MongoDbDataContext
DataContext implementation for MongoDB.
|
Modifier and Type | Class and Description |
---|---|
class |
PojoDataContext
A
DataContext used to serve MetaModel support for collections of Java
objects and key/value maps. |
Modifier and Type | Class and Description |
---|---|
class |
SalesforceDataContext
A datacontext that uses the Salesforce API.
|
Copyright © 2007–2019 The Apache Software Foundation. All rights reserved.