Uses of Class
tilda.data.ObjectPerf_Data
-
Packages that use ObjectPerf_Data Package Description tilda.data._Tilda -
-
Uses of ObjectPerf_Data in tilda.data._Tilda
Methods in tilda.data._Tilda that return ObjectPerf_Data Modifier and Type Method Description ObjectPerf_Data
TILDA__OBJECTPERF. copy()
static ObjectPerf_Data
TILDA__OBJECTPERF_Factory. create(java.lang.String schemaName, java.lang.String objectName, java.time.ZonedDateTime startPeriod, java.time.ZonedDateTime endPeriod)
Creates a new object in memory, which you can subsequently#write()
to the data store.static ObjectPerf_Data
TILDA__OBJECTPERF_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 ObjectPerf_Data
TILDA__OBJECTPERF_Factory. lookupByPrimaryKey(java.lang.String schemaName, java.lang.String objectName, java.time.ZonedDateTime startPeriod)
Lookup one record by the primary key: schemaName, objectName, startPeriod.Methods in tilda.data._Tilda that return types with arguments of type ObjectPerf_Data Modifier and Type Method Description static ListResults<ObjectPerf_Data>
TILDA__OBJECTPERF_Factory. lookupWhereAll(Connection C, int start, int size)
Lookup records by the query 'All' over .
The results are ordered by: schemaName asc, objectName asc, startPeriod ascstatic ListResults<ObjectPerf_Data>
TILDA__OBJECTPERF_Factory. lookupWhereSchemaByObjectStart(Connection C, java.lang.String schemaName, int __start__, int __size__)
Lookup records by the index 'SchemaByObjectStart' over schemaName.
The results are ordered by: objectName asc, startPeriod descstatic ListResults<ObjectPerf_Data>
TILDA__OBJECTPERF_Factory. lookupWhereSchemaObjectByStart(Connection C, java.lang.String schemaName, java.lang.String objectName, int __start__, int __size__)
Lookup records by the index 'SchemaObjectByStart' over schemaName, objectName.
The results are ordered by: startPeriod descprotected static ListResults<ObjectPerf_Data>
TILDA__OBJECTPERF_Factory. readMany(Connection C, java.lang.String fullSelectQuery, int start, int size)
static ListResults<ObjectPerf_Data>
TILDA__OBJECTPERF_Factory. runSelect(Connection C, SelectQuery Q, int start, int size)
Methods in tilda.data._Tilda with parameters of type ObjectPerf_Data Modifier and Type Method Description static void
TILDA__OBJECTPERF_Factory. toCSV(java.io.Writer out, ObjectPerf_Data obj)
static void
TILDA__OBJECTPERF_Factory. toJSON(java.io.Writer out, ObjectPerf_Data obj, boolean fullObject)
static void
TILDA__OBJECTPERF_Factory. toJSON(java.io.Writer out, ObjectPerf_Data obj, java.lang.String lead, boolean fullObject)
static void
TILDA__OBJECTPERF_Factory. toJSON(java.io.Writer outWriter, ObjectPerf_Data obj, java.lang.String lead, boolean fullObject, boolean noNullArrays)
Method parameters in tilda.data._Tilda with type arguments of type ObjectPerf_Data Modifier and Type Method Description static void
TILDA__OBJECTPERF_Factory. lookupWhereAll(Connection C, ObjectProcessor<ObjectPerf_Data> OP, int start, int size)
Lookup records by the query 'All' over .
The results are ordered by: schemaName asc, objectName asc, startPeriod ascstatic void
TILDA__OBJECTPERF_Factory. lookupWhereSchemaByObjectStart(Connection C, ObjectProcessor<ObjectPerf_Data> OP, java.lang.String schemaName, int __start__, int __size__)
Lookup records by the index 'SchemaByObjectStart' over schemaName.
The results are ordered by: objectName asc, startPeriod descstatic void
TILDA__OBJECTPERF_Factory. lookupWhereSchemaObjectByStart(Connection C, ObjectProcessor<ObjectPerf_Data> OP, java.lang.String schemaName, java.lang.String objectName, int __start__, int __size__)
Lookup records by the index 'SchemaObjectByStart' over schemaName, objectName.
The results are ordered by: startPeriod descstatic void
TILDA__OBJECTPERF_Factory. runSelect(Connection C, SelectQuery Q, ObjectProcessor<ObjectPerf_Data> OP, int start, int size)
static void
TILDA__OBJECTPERF_Factory. toCSV(java.io.Writer out, java.util.List<ObjectPerf_Data> L, boolean includeHeader)
static void
TILDA__OBJECTPERF_Factory. toJSON(java.io.Writer out, java.util.List<ObjectPerf_Data> L, java.lang.String lead, boolean fullList)
static int
TILDA__OBJECTPERF_Factory. writeBatch(Connection C, java.util.List<ObjectPerf_Data> L, int batchSize, int commitSize)
-