oracle.toplink.mappings
Class TypedAssociation
java.lang.Object
|
+--oracle.toplink.mappings.Association
|
+--oracle.toplink.mappings.TypedAssociation
- All Implemented Interfaces:
- java.util.Map.Entry
- public class TypedAssociation
- extends Association
Purpose: Generic association object.
This can be used to map hashtable/map containers where the key and value are non-typed primitives.
- Since:
- TOPLink/Java 3.0
| Type | Method |
java.lang.Class |
getKeyType()
PUBLIC:
Return the class of the key. |
java.lang.Class |
getValueType()
PUBLIC:
Return the class of the value. |
void |
setKeyType(java.lang.Class keyType)
PUBLIC:
Set the class of the key. |
void |
setValueType(java.lang.Class valueType)
PUBLIC:
Set the class of the value. |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface java.util.Map.Entry |
equals, hashCode |
TypedAssociation
public TypedAssociation()
- Default constructor.
TypedAssociation
public TypedAssociation(java.lang.Object key,
java.lang.Object value)
- PUBLIC:
Create an association.
getKeyType
public java.lang.Class getKeyType()
- PUBLIC:
Return the class of the key.
getValueType
public java.lang.Class getValueType()
- PUBLIC:
Return the class of the value.
setKeyType
public void setKeyType(java.lang.Class keyType)
- PUBLIC:
Set the class of the key.
setValueType
public void setValueType(java.lang.Class valueType)
- PUBLIC:
Set the class of the value.