Uses of Class
org.apache.torque.om.SimpleKey

Packages that use SimpleKey
org.apache.torque.om API for the classic Torque-generated object model. 
 

Uses of SimpleKey in org.apache.torque.om
 

Subclasses of SimpleKey in org.apache.torque.om
 class DateKey
          This class can be used as an ObjectKey to uniquely identify an object within an application where the id is a Date.
 class NumberKey
          This class can be used as an ObjectKey to uniquely identify an object within an application where the id consists of a single entity such a GUID or the value of a db row's primary key.
 class StringKey
          This class can be used as an ObjectKey to uniquely identify an object within an application where the id consists of a single entity such a GUID or the value of a db row's primary key.
 

Fields in org.apache.torque.om declared as SimpleKey
private  SimpleKey[] ComboKey.key
          The array of the keys
 

Methods in org.apache.torque.om that return SimpleKey
static SimpleKey SimpleKey.keyFor(java.math.BigDecimal key)
          Creates a SimpleKey equivalent to key
static SimpleKey SimpleKey.keyFor(int key)
          Creates a SimpleKey equivalent to key
static SimpleKey SimpleKey.keyFor(long key)
          Creates a SimpleKey equivalent to key
static SimpleKey SimpleKey.keyFor(double key)
          Creates a SimpleKey equivalent to key
static SimpleKey SimpleKey.keyFor(java.lang.Number key)
          Creates a SimpleKey equivalent to key
static SimpleKey SimpleKey.keyFor(NumberKey key)
          Creates a SimpleKey equivalent to key
static SimpleKey SimpleKey.keyFor(java.lang.String key)
          Creates a SimpleKey equivalent to key
static SimpleKey SimpleKey.keyFor(StringKey key)
          Creates a SimpleKey equivalent to key
static SimpleKey SimpleKey.keyFor(java.util.Date key)
          Creates a SimpleKey equivalent to key
static SimpleKey SimpleKey.keyFor(DateKey key)
          Creates a SimpleKey equivalent to key
 

Methods in org.apache.torque.om with parameters of type SimpleKey
 void BaseObject.setPrimaryKey(SimpleKey[] primaryKey)
          Sets the PrimaryKey for the object as an Object.
 void ComboKey.setValue(SimpleKey[] keys)
          Sets the internal representation using a SimpleKey array.
 

Constructors in org.apache.torque.om with parameters of type SimpleKey
ComboKey(SimpleKey[] keys)
          Creates a ComboKey whose internal representation is an array of SimpleKeys.
 



Copyright © 2000-2003 Apache Software Foundation. All Rights Reserved.