Methods Summary |
---|
public void | addField(PersistenceFieldElement field)Add the supplied field to the collection of fields maintained by this
holder.
addFields(new PersistenceFieldElement[]{field});
|
public void | addFields(PersistenceFieldElement[] fields)Add the supplied fields to the collection of fields maintained by this
holder.
getFieldGroupImpl().changeFields(fields, Impl.ADD);
|
public boolean | containsField(PersistenceFieldElement field)Tests whether the supplied field is in the collection of fields
maintained by this holder.
return (getFieldGroupImpl().getField(field.getName()) != null);
|
public PersistenceFieldElement | getField(java.lang.String name)Returns the field with the supplied name from the collection of fields
maintained by this holder.
return getFieldGroupImpl().getField(name);
|
final com.sun.jdo.api.persistence.model.jdo.FieldGroupElement$Impl | getFieldGroupImpl() return (Impl)getImpl();
|
public PersistenceFieldElement[] | getFields()Returns the collection of fields maintained by this holder in the form
of an array.
return getFieldGroupImpl().getFields();
|
public void | removeField(PersistenceFieldElement field)Remove the supplied field from the collection of fields maintained by
this holder.
removeFields(new PersistenceFieldElement[]{field});
|
public void | removeFields(PersistenceFieldElement[] fields)Removed the supplied fields from the collection of fields maintained
by this holder.
getFieldGroupImpl().changeFields(fields, Impl.REMOVE);
|
public void | setFields(PersistenceFieldElement[] fields)Sets the collection of fields maintained by this holder to the contents
of the supplied array.
getFieldGroupImpl().changeFields(fields, Impl.SET);
|