Oracle Fusion Middleware Java API Reference for Oracle TopLink (Deprecated)
11g Release 1 (11.1.1)

B32476-04

oracle.toplink.mappings
Class Association

java.lang.Object
  extended by oracle.toplink.mappings.Association
All Implemented Interfaces:
java.util.Map.Entry
Direct Known Subclasses:
PropertyAssociation, TypedAssociation

public class Association
extends java.lang.Object
implements java.util.Map.Entry

Purpose: Generic association object. This can be used to map hashtable/map containers where the key and value primitives or independent objects.

Since:
TOPLink/Java 3.0

Constructor Summary
Association()
          Default constructor.
Association(java.lang.Object key, java.lang.Object value)
          Create an association.
 
Method Summary
 java.lang.Object getKey()
          Return the key.
 java.lang.Object getValue()
          Return the value.
 void setKey(java.lang.Object key)
          Set the key.
 java.lang.Object setValue(java.lang.Object value)
          Set 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
 

Constructor Detail

Association

public Association()
Default constructor.


Association

public Association(java.lang.Object key,
                   java.lang.Object value)
Create an association.

Method Detail

getKey

public java.lang.Object getKey()
Return the key.

Specified by:
getKey in interface java.util.Map.Entry

getValue

public java.lang.Object getValue()
Return the value.

Specified by:
getValue in interface java.util.Map.Entry

setKey

public void setKey(java.lang.Object key)
Set the key.


setValue

public java.lang.Object setValue(java.lang.Object value)
Set the value.

Specified by:
setValue in interface java.util.Map.Entry

Copyright © 1998, 2012, Oracle. All Rights Reserved.