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