Methods Summary |
---|
public void | clear()PUBLIC:
Clears the contents of the database row, both fields and values.
super.clear();
|
public boolean | contains(java.lang.Object value)PUBLIC:
Checks if the given Object value is contained in the values held
in the database row.
return super.containsValue(value);
|
public boolean | containsKey(java.lang.Object key)PUBLIC:
Checks if a key (ie. the field) is contained in the database row.
Conforms to a hashtable interface.
return super.containsKey(key);
|
public boolean | containsKey(java.lang.String fieldName)PUBLIC:
Checks if a given field is contained in the database row.
return super.containsKey(fieldName);
|
public boolean | containsValue(java.lang.Object value)PUBLIC:
Checks if the given Object value is contained in the values held
in the database row.
return super.containsValue(value);
|
public java.util.Enumeration | elements()PUBLIC:
Returns an Enumeration of the values in the database row.
return super.elements();
|
public java.util.Set | entrySet()PUBLIC:
Returns a set of map entries (ie. field-value pairs)in the database row
with the DatabaseFields as keys and the value Objects as values.
return super.entrySet();
|
public java.lang.Object | get(java.lang.Object key)PUBLIC:
Retrieves the value for the given key.
A field is constructed with the key to check the hash table.
If missing, null is returned.
return super.get(key);
|
public java.lang.Object | get(java.lang.String fieldName)PUBLIC:
Retrieves the value with the given name of the DatabaseField.
A field is constructed on the name to check the hash table.
If missing, null is returned.
return super.get(fieldName);
|
public java.lang.Object | getIndicatingNoEntry(java.lang.String fieldName)PUBLIC:
Retrieves the value with the given field name.
A field is constructed on the name to check the hash table.
If missing, DatabaseRow.noEntry is returned.
return super.getIndicatingNoEntry(fieldName);
|
public java.lang.Object | getValues(oracle.toplink.essentials.internal.helper.DatabaseField key)PUBLIC:
Returns the Object associated with the given key
(null if the key does not map to an Object.)
return super.get(key);
|
public java.lang.Object | getValues(java.lang.String key)PUBLIC:
Returns the Object associated with the given key
(null if the key does not map to an Object.)
return super.get(key);
|
public boolean | isEmpty()PUBLIC:
Checks if the database row is empty (ie. there are no field-value pairs.)
return super.isEmpty();
|
public java.util.Set | keySet()PUBLIC:
Returns a set of the keys, the DatabaseField Objects, for the database row.
return super.keySet();
|
public java.util.Enumeration | keys()PUBLIC:
Returns an Enumeration of the DatabaseField Objects.
return super.keys();
|
public java.lang.Object | put(java.lang.Object key, java.lang.Object value)PUBLIC:
Adds a field-value pair to the row.
return super.put(key, value);
|
public java.lang.Object | put(java.lang.String key, java.lang.Object value)PUBLIC:
Adds a field-value pair to the row.
return super.put(key, value);
|
public void | putAll(java.util.Map map)PUBLIC:
Adds all of the elements in the given map to the database row.
super.putAll(map);
|
public int | size()PUBLIC:
Returns the number of field-value pairs in the database row.
return super.size();
|
public java.util.Collection | values()PUBLIC:
Returns a collection of the values held in the database row.
return super.values();
|