Uses of Class
com.tietoenator.trip.jxp.data.TdbRecord
Packages that use TdbRecord
Package
Description
Database content manipulation.
[EXPERIMENTAL] Graph database querying and manipulation.
-
Uses of TdbRecord in com.tietoenator.trip.jxp.data
Subclasses of TdbRecord in com.tietoenator.trip.jxp.dataModifier and TypeClassDescriptionclass
Container and manipulation logic for a record from a TRIP graph database.class
Container and manipulation logic for a record from a grid clusterclass
Container and manipulation logic for a record from a TRIPxml database.Methods in com.tietoenator.trip.jxp.data that return TdbRecordModifier and TypeMethodDescriptionTdbRecord.copy
(TdbDatabaseDesign targetDatabase) Copies the current record to the specified database.Copies the current record to the specified database.TdbComponent.getOwnerRecord()
Retrieve a reference to the TdbRecord within which this component existsTdbSearchSet.getRecord
(int index) Returns a TdbRecord instance for a record in the current search set.TdbSearchSet.getRecord
(long index) Returns a TdbRecord instance for a record in the current search set.TdbSearchSet.getRetrievalTemplate()
Get the retrieval template for records to retrieve.TdbRecordSet.recordAt
(int offset) Retrieve the TdbRecord at the defined offset within the set
If the provided offset is outside of the bounds of the record set, an INVALID_ARGS exception is thrown.Methods in com.tietoenator.trip.jxp.data that return types with arguments of type TdbRecordModifier and TypeMethodDescriptionTdbSearchSet.iterator()
Returns an iterator over the records in the current search set.TdbRecordSet.records()
Retrieve the collection of records retrieved most recently by the get() method from the serverMethods in com.tietoenator.trip.jxp.data with parameters of type TdbRecordModifier and TypeMethodDescriptionvoid
TdbGraphRecord.setReference
(TdbRecord rec) Set a reference to a pre-existing record.void
TdbRecordSet.setRetrievalTemplate
(TdbRecord template) Set the record set template, i.e.void
TdbSearch.setRetrievalTemplate
(TdbRecord newTemplate) Set the default retrieval template for records to retrieve.void
TdbSearchSet.setRetrievalTemplate
(TdbRecord newTemplate) Set the retrieval template for records to retrieve.void
TdbGraphRecord.setSourceRecord
(TdbRecord rec) Set the source record for a graph edge.void
TdbGraphRecord.setTargetRecord
(TdbRecord rec) Set the target record for a graph edge.void
Apply the same update transformation to all records covered by the record setMethod parameters in com.tietoenator.trip.jxp.data with type arguments of type TdbRecordModifier and TypeMethodDescriptionvoid
TdbRecordSet.insert
(Collection<TdbRecord> records) Insert new records to the database associated with this record setConstructors in com.tietoenator.trip.jxp.data with parameters of type TdbRecordModifierConstructorDescriptionTdbStringField
(TdbRecord parent, TdbFieldTemplate tmpl) Constructor, creates a blank instance based on the template providedTdbStringField
(TdbRecord parent, String name) Constructor, creates a blank instance based on the name provided -
Uses of TdbRecord in com.tietoenator.trip.jxp.graph
Methods in com.tietoenator.trip.jxp.graph that return TdbRecordModifier and TypeMethodDescriptionTdbGraphPathVertex.getRecord
(boolean createFields, boolean retrieve) Return a TdbRecord object for this graph vertex.Methods in com.tietoenator.trip.jxp.graph with parameters of type TdbRecordModifier and TypeMethodDescriptionTdbGraph.createEdge
(String name, TdbRecord source, TdbRecord target, boolean commit) Create an edge in the graph database currently associated with this TdbGraph instance.TdbGraph.createVertex
(String label, TdbRecord reference, boolean commit) Create a vertex record in the graph database currently associated with this TdbGraph instance.