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