Uses of Class
tilda.data.Catalog_Data
-
Packages that use Catalog_Data Package Description tilda.data._Tilda tilda.generation.helpers -
-
Uses of Catalog_Data in tilda.data._Tilda
Methods in tilda.data._Tilda that return Catalog_Data Modifier and Type Method Description Catalog_Data
TILDA__CATALOG. copy()
static Catalog_Data
TILDA__CATALOG_Factory. create(java.lang.String schemaName, java.lang.String tableViewName, java.lang.String columnName, java.lang.String type, java.lang.String description)
Creates a new object in memory, which you can subsequently#write()
to the data store.static Catalog_Data
TILDA__CATALOG_Factory. init(java.util.Map<java.lang.String,java.lang.String[]> Values, java.util.List<StringStringPair> Errors)
The generic init method is typically run when there is a general data structure of data available, for example, a CSV data file read in memory, or run from a servlet using a Mapobject obtained from an ServletRequest object. static Catalog_Data
TILDA__CATALOG_Factory. lookupByColumn(java.lang.String schemaName, java.lang.String tableViewName, java.lang.String columnName)
Lookup one record by the unique index 'Column': schemaName, tableViewName, columnName.static Catalog_Data
TILDA__CATALOG_Factory. lookupByPrimaryKey(long refnum)
Lookup one record by the primary key: refnum.Methods in tilda.data._Tilda that return types with arguments of type Catalog_Data Modifier and Type Method Description static ListResults<Catalog_Data>
TILDA__CATALOG_Factory. lookupWhereAll(Connection C, int start, int size)
Lookup records by the query 'All' over .
The results are ordered by: schemaName asc, tableViewName asc, columnName ascstatic ListResults<Catalog_Data>
TILDA__CATALOG_Factory. lookupWhereRefColumns(Connection C, int __start__, int __size__)
Lookup records by the index 'RefColumns' over .
The results are ordered by: referencedColumns ascstatic ListResults<Catalog_Data>
TILDA__CATALOG_Factory. lookupWhereRefFormulas(Connection C, int __start__, int __size__)
Lookup records by the index 'RefFormulas' over .
The results are ordered by: referencedFormulas ascprotected static ListResults<Catalog_Data>
TILDA__CATALOG_Factory. readMany(Connection C, java.lang.String fullSelectQuery, int start, int size)
static ListResults<Catalog_Data>
TILDA__CATALOG_Factory. runSelect(Connection C, SelectQuery Q, int start, int size)
Methods in tilda.data._Tilda with parameters of type Catalog_Data Modifier and Type Method Description static void
TILDA__CATALOG_Factory. toCSV(java.io.Writer out, Catalog_Data obj)
static void
TILDA__CATALOG_Factory. toCSVSimple(java.io.Writer out, Catalog_Data obj)
static void
TILDA__CATALOG_Factory. toJSON(java.io.Writer out, Catalog_Data obj, boolean fullObject)
static void
TILDA__CATALOG_Factory. toJSON(java.io.Writer out, Catalog_Data obj, java.lang.String lead, boolean fullObject)
static void
TILDA__CATALOG_Factory. toJSON(java.io.Writer outWriter, Catalog_Data obj, java.lang.String lead, boolean fullObject, boolean noNullArrays)
static void
TILDA__CATALOG_Factory. toJSONSimple(java.io.Writer out, Catalog_Data obj, boolean fullObject)
static void
TILDA__CATALOG_Factory. toJSONSimple(java.io.Writer out, Catalog_Data obj, java.lang.String lead, boolean fullObject)
static void
TILDA__CATALOG_Factory. toJSONSimple(java.io.Writer outWriter, Catalog_Data obj, java.lang.String lead, boolean fullObject, boolean noNullArrays)
Method parameters in tilda.data._Tilda with type arguments of type Catalog_Data Modifier and Type Method Description static void
TILDA__CATALOG_Factory. lookupWhereAll(Connection C, ObjectProcessor<Catalog_Data> OP, int start, int size)
Lookup records by the query 'All' over .
The results are ordered by: schemaName asc, tableViewName asc, columnName ascstatic void
TILDA__CATALOG_Factory. lookupWhereRefColumns(Connection C, ObjectProcessor<Catalog_Data> OP, int __start__, int __size__)
Lookup records by the index 'RefColumns' over .
The results are ordered by: referencedColumns ascstatic void
TILDA__CATALOG_Factory. lookupWhereRefFormulas(Connection C, ObjectProcessor<Catalog_Data> OP, int __start__, int __size__)
Lookup records by the index 'RefFormulas' over .
The results are ordered by: referencedFormulas ascstatic void
TILDA__CATALOG_Factory. runSelect(Connection C, SelectQuery Q, ObjectProcessor<Catalog_Data> OP, int start, int size)
static void
TILDA__CATALOG_Factory. toCSV(java.io.Writer out, java.util.List<Catalog_Data> L, boolean includeHeader)
static void
TILDA__CATALOG_Factory. toCSVSimple(java.io.Writer out, java.util.List<Catalog_Data> L, boolean includeHeader)
static void
TILDA__CATALOG_Factory. toJSON(java.io.Writer out, java.util.List<Catalog_Data> L, java.lang.String lead, boolean fullList)
static void
TILDA__CATALOG_Factory. toJSONSimple(java.io.Writer out, java.util.List<Catalog_Data> L, java.lang.String lead, boolean fullList)
static int
TILDA__CATALOG_Factory. writeBatch(Connection C, java.util.List<Catalog_Data> L, int batchSize, int commitSize)
-
Uses of Catalog_Data in tilda.generation.helpers
Fields in tilda.generation.helpers with type parameters of type Catalog_Data Modifier and Type Field Description java.util.List<Catalog_Data>
CatalogHelper. _CL
-