Uses of Class
tilda.data.Key_Data
-
Packages that use Key_Data Package Description tilda.data tilda.data._Tilda tilda.db -
-
Uses of Key_Data in tilda.data
Methods in tilda.data with parameters of type Key_Data Modifier and Type Method Description protected static long
Key_Factory. replenish(Key_Data K)
-
Uses of Key_Data in tilda.data._Tilda
Methods in tilda.data._Tilda that return Key_Data Modifier and Type Method Description Key_Data
TILDA__KEY. copy()
static Key_Data
TILDA__KEY_Factory. create(long refnum, java.lang.String name, long max, int count)
Creates a new object in memory, which you can subsequently#write()
to the data store.static Key_Data
TILDA__KEY_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 Key_Data
TILDA__KEY_Factory. lookupByName(java.lang.String name)
Lookup one record by the unique index 'Name': name.static Key_Data
TILDA__KEY_Factory. lookupByPrimaryKey(long refnum)
Lookup one record by the primary key: refnum.Methods in tilda.data._Tilda that return types with arguments of type Key_Data Modifier and Type Method Description static ListResults<Key_Data>
TILDA__KEY_Factory. lookupWhereAll(Connection C, int start, int size)
Lookup records by the query 'All' over .
The results are ordered by: refnum ascstatic ListResults<Key_Data>
TILDA__KEY_Factory. lookupWhereAllByName(Connection C, int __start__, int __size__)
Lookup records by the index 'AllByName' over .
The results are ordered by: name ascprotected static ListResults<Key_Data>
TILDA__KEY_Factory. readMany(Connection C, java.lang.String fullSelectQuery, int start, int size)
static ListResults<Key_Data>
TILDA__KEY_Factory. runSelect(Connection C, SelectQuery Q, int start, int size)
Methods in tilda.data._Tilda with parameters of type Key_Data Modifier and Type Method Description static void
TILDA__KEY_Factory. toCSV(java.io.Writer out, Key_Data obj)
static void
TILDA__KEY_Factory. toJSON(java.io.Writer out, Key_Data obj, boolean fullObject)
static void
TILDA__KEY_Factory. toJSON(java.io.Writer out, Key_Data obj, java.lang.String lead, boolean fullObject)
static void
TILDA__KEY_Factory. toJSON(java.io.Writer outWriter, Key_Data obj, java.lang.String lead, boolean fullObject, boolean noNullArrays)
Method parameters in tilda.data._Tilda with type arguments of type Key_Data Modifier and Type Method Description static void
TILDA__KEY_Factory. lookupWhereAll(Connection C, ObjectProcessor<Key_Data> OP, int start, int size)
Lookup records by the query 'All' over .
The results are ordered by: refnum ascstatic void
TILDA__KEY_Factory. lookupWhereAllByName(Connection C, ObjectProcessor<Key_Data> OP, int __start__, int __size__)
Lookup records by the index 'AllByName' over .
The results are ordered by: name ascstatic void
TILDA__KEY_Factory. runSelect(Connection C, SelectQuery Q, ObjectProcessor<Key_Data> OP, int start, int size)
static void
TILDA__KEY_Factory. toCSV(java.io.Writer out, java.util.List<Key_Data> L, boolean includeHeader)
static void
TILDA__KEY_Factory. toJSON(java.io.Writer out, java.util.List<Key_Data> L, java.lang.String lead, boolean fullList)
static int
TILDA__KEY_Factory. writeBatch(Connection C, java.util.List<Key_Data> L, int batchSize, int commitSize)
-
Uses of Key_Data in tilda.db
Fields in tilda.db with type parameters of type Key_Data Modifier and Type Field Description protected static java.util.Map<java.lang.String,Key_Data>
KeysManager. _M
-