Method Summary |
|
public static void | addSelectColumns(Criteria criteria) Add all the columns needed to create a new object. |
public static Criteria | buildCriteria(ObjectKey pk) |
public static Criteria | buildCriteria(Condition obj) |
public static Criteria | buildSelectCriteria(Condition obj) |
public static void | correctBooleans(Criteria criteria) changes the boolean values in the criteria to the appropriate type,
whenever a booleanchar or booleanint column is involved. |
public static void | doDelete(Criteria criteria) Method to do deletes. |
public static void | doDelete(Criteria criteria, Connection con) Method to do deletes. |
public static void | doDelete(Condition obj) |
public static void | doDelete(Condition obj, Connection con) Method to delete. |
public static void | doDelete(ObjectKey pk) Method to do deletes. |
public static void | doDelete(ObjectKey pk, Connection con) Method to delete. |
public static ObjectKey | doInsert(Criteria criteria) Method to do inserts. |
public static ObjectKey | doInsert(Criteria criteria, Connection con) Method to do inserts. |
public static void | doInsert(Condition obj) |
public static void | doInsert(Condition obj, Connection con) Method to do inserts. |
public static List | doSelect(Criteria criteria) Method to do selects.
Parameters: criteria - object used to create the SELECT statement. |
public static List | doSelect(Criteria criteria, Connection con) Method to do selects within a transaction. |
public static List | doSelect(Condition obj) |
protected static List | doSelectJoinAllExceptAttribute(Criteria criteria) selects a collection of Condition objects pre-filled with
all related objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinAllExceptAttribute(Criteria criteria, Connection conn) selects a collection of Condition objects pre-filled with
all related objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinAllExceptAttributeOption(Criteria criteria) selects a collection of Condition objects pre-filled with
all related objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinAllExceptAttributeOption(Criteria criteria, Connection conn) selects a collection of Condition objects pre-filled with
all related objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinAllExceptRModuleAttribute(Criteria criteria) selects a collection of Condition objects pre-filled with
all related objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinAllExceptRModuleAttribute(Criteria criteria, Connection conn) selects a collection of Condition objects pre-filled with
all related objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinAllExceptRModuleIssueType(Criteria criteria) selects a collection of Condition objects pre-filled with
all related objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinAllExceptRModuleIssueType(Criteria criteria, Connection conn) selects a collection of Condition objects pre-filled with
all related objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinAllExceptTransition(Criteria criteria) selects a collection of Condition objects pre-filled with
all related objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinAllExceptTransition(Criteria criteria, Connection conn) selects a collection of Condition objects pre-filled with
all related objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinAttribute(Criteria criteria) selects a collection of Condition objects pre-filled with their
Attribute objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinAttribute(Criteria criteria, Connection conn) selects a collection of Condition objects pre-filled with their
Attribute objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinAttributeOption(Criteria criteria) selects a collection of Condition objects pre-filled with their
AttributeOption objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinAttributeOption(Criteria criteria, Connection conn) selects a collection of Condition objects pre-filled with their
AttributeOption objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinRModuleAttribute(Criteria criteria) selects a collection of Condition objects pre-filled with their
RModuleAttribute objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinRModuleAttribute(Criteria criteria, Connection conn) selects a collection of Condition objects pre-filled with their
RModuleAttribute objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinRModuleIssueType(Criteria criteria) selects a collection of Condition objects pre-filled with their
RModuleIssueType objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinRModuleIssueType(Criteria criteria, Connection conn) selects a collection of Condition objects pre-filled with their
RModuleIssueType objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinTransition(Criteria criteria) selects a collection of Condition objects pre-filled with their
Transition objects.
This method is protected by default in order to keep the public
api reasonable. |
protected static List | doSelectJoinTransition(Criteria criteria, Connection conn) selects a collection of Condition objects pre-filled with their
Transition objects.
This method is protected by default in order to keep the public
api reasonable. |
public static List | doSelectVillageRecords(Criteria criteria) Grabs the raw Village records to be formed into objects.
This method handles connections internally. |
public static List | doSelectVillageRecords(Criteria criteria, Connection con) Grabs the raw Village records to be formed into objects. |
public static void | doUpdate(Criteria criteria) Method to do updates. |
public static void | doUpdate(Criteria criteria, Connection con) Method to do updates. |
public static void | doUpdate(Condition obj) |
public static void | doUpdate(Condition obj, Connection con) Method to do update. |
public static MapBuilder | getMapBuilder() |
public static Class | getOMClass() The class that the Peer will make instances of. |
protected static TableMap | getTableMap() Returns the TableMap related to this peer. |
public static void | populateObject(Record row, int offset, Condition obj) Populates an object from a resultset row starting
from a specified offset. |
public static List | populateObjects(List records) The returned List will contain objects of the default type or
objects that inherit from the default. |
public static List | resultSet2Objects(java.sql.ResultSet results) Get the list of objects for a ResultSet. |
public static Condition | retrieveByPK(Long pk) |
public static Condition | retrieveByPK(Long pk, Connection con) |
public static Condition | retrieveByPK(ObjectKey pk) |
public static Condition | retrieveByPK(ObjectKey pk, Connection con) |
public static List | retrieveByPKs(List pks) |
public static List | retrieveByPKs(List pks, Connection dbcon) |
public static Condition | row2Object(Record row, int offset, Class cls) Create a new object of type cls from a resultset row starting
from a specified offset. |