public class Vector extends Vector implements BackedSCO
| Modifier and Type | Field and Description |
|---|---|
protected boolean |
allowNulls |
protected ListStore |
backingStore |
protected boolean |
isCacheLoaded |
protected boolean |
queued |
protected boolean |
useCache |
delegate, LOCALISER, ownerMmd, ownerOPcapacityIncrement, elementCount, elementDatamodCount| Constructor and Description |
|---|
Vector(ObjectProvider op,
AbstractMemberMetaData mmd)
Constructor, using the ObjectProvider of the "owner" and the field name.
|
| Modifier and Type | Method and Description |
|---|---|
void |
add(int index,
Object element)
Method to add an element to a position in the Vector.
|
boolean |
add(Object element)
Method to add an element to the Vector.
|
boolean |
addAll(Collection elements)
Method to add a Collection to the Vector.
|
boolean |
addAll(int index,
Collection elements)
Method to add a Collection to a position in the Vector.
|
void |
addElement(Object element)
Method to add an element to the Vector.
|
void |
clear()
Method to clear the Vector.
|
Object |
clone()
Clone operator to return a copy of this object.
|
boolean |
contains(Object element)
Method to return if the list contains this element.
|
boolean |
containsAll(Collection c)
Accessor for whether a collection of elements are contained here.
|
Object |
elementAt(int index)
Method to retrieve an element no.
|
Enumeration |
elements()
Method to return the elements of the List as an Enumeration.
|
boolean |
equals(Object o)
Equality operator.
|
Object |
firstElement()
Method to return the first element in the Vector.
|
Object |
get(int index)
Method to retrieve an element no.
|
Store |
getBackingStore() |
Object |
getValue()
Accessor for the unwrapped value that we are wrapping.
|
int |
hashCode()
Hashcode operator.
|
int |
indexOf(Object element)
Method to the position of an element.
|
int |
indexOf(Object element,
int startIndex)
Method to the position of an element.
|
void |
initialise()
Method to initialise the SCO for use.
|
void |
initialise(Object o,
boolean forInsert,
boolean forUpdate)
Method to initialise the SCO from an existing value.
|
boolean |
isEmpty()
Accessor for whether the Vector is empty.
|
boolean |
isLoaded()
Method to return if the SCO has its contents loaded.
|
Iterator |
iterator()
Method to retrieve an iterator for the list.
|
Object |
lastElement()
Method to return the last element in the Vector.
|
int |
lastIndexOf(Object element)
Method to retrieve the last position of the element.
|
int |
lastIndexOf(Object element,
int startIndex)
Method to retrieve the last position of the element.
|
ListIterator |
listIterator()
Method to retrieve a List iterator for the list.
|
ListIterator |
listIterator(int index)
Method to retrieve a List iterator for the list from the index.
|
void |
load()
Method to effect the load of the data in the SCO.
|
protected void |
loadFromStore()
Method to load all elements from the "backing store" where appropriate.
|
Object |
remove(int index)
Method to remove an element from the Vector.
|
boolean |
remove(Object element)
Method to remove an element from the Vector.
|
boolean |
remove(Object element,
boolean allowCascadeDelete)
Method to remove an element from the collection, and observe the flag for whether to allow cascade delete.
|
boolean |
removeAll(Collection elements)
Method to remove a Collection of elements from the Vector.
|
void |
removeAllElements()
Method to remove all elements from the Vector.
|
boolean |
removeElement(Object element)
Method to remove an element from the Vector.
|
void |
removeElementAt(int index)
Method to remove an element from the Vector.
|
boolean |
retainAll(Collection c)
Method to retain a Collection of elements (and remove all others).
|
Object |
set(int index,
Object element)
Method to set the element at a position in the Vector.
|
Object |
set(int index,
Object element,
boolean allowDependentField)
Addition that allows turning off of the dependent-field checks
when doing the position setting.
|
void |
setElementAt(Object element,
int index)
Method to set the element at a position in the Vector.
|
int |
size()
Accessor for the size of the Vector.
|
List |
subList(int from,
int to)
Accessor for the subList of elements between from and to of the List
|
Object[] |
toArray()
Method to return the list as an array.
|
Object[] |
toArray(Object[] a)
Method to return the list as an array.
|
void |
unsetOwner()
Method to unset the owner and field information.
|
void |
updateEmbeddedElement(Object element,
int fieldNumber,
Object value)
Method to update an embedded element in this collection.
|
protected Object |
writeReplace()
The writeReplace method is called when ObjectOutputStream is preparing
to write the object to the stream.
|
attachCopy, detachCopy, getFieldName, getOwner, makeDirtycapacity, copyInto, ensureCapacity, insertElementAt, removeRange, setSize, toString, trimToSizeprotected transient ListStore backingStore
protected transient boolean allowNulls
protected transient boolean useCache
protected transient boolean isCacheLoaded
protected transient boolean queued
public Vector(ObjectProvider op, AbstractMemberMetaData mmd)
op - The owner ObjectProvidermmd - Metadata for the memberpublic void initialise(Object o, boolean forInsert, boolean forUpdate)
initialise in interface SCOinitialise in class Vectoro - The object to set fromforInsert - Whether the object needs inserting in the datastore with this valueforUpdate - Whether to update the datastore with this valuepublic void initialise()
initialise in interface SCOinitialise in class Vectorpublic Object getValue()
public void load()
load in interface SCOContainerload in class Vectorpublic boolean isLoaded()
isLoaded in interface SCOContainerisLoaded in class Vectorprotected void loadFromStore()
public Store getBackingStore()
getBackingStore in interface BackedSCOpublic void updateEmbeddedElement(Object element, int fieldNumber, Object value)
updateEmbeddedElement in interface SCOCollectionupdateEmbeddedElement in class Vectorelement - The elementfieldNumber - Number of field in the elementvalue - New value for this fieldpublic void unsetOwner()
unsetOwner in interface SCOunsetOwner in class Vectorpublic Object clone()
Mutable second-class Objects are required to provide a public clone method in order to allow for copying PersistenceCapable objects. In contrast to Object.clone(), this method must not throw a CloneNotSupportedException.
public boolean contains(Object element)
public boolean containsAll(Collection c)
containsAll in interface CollectioncontainsAll in interface ListcontainsAll in class Vectorc - The collection of elements.public Object elementAt(int index)
public boolean equals(Object o)
public Enumeration elements()
public Object firstElement()
firstElement in class Vectorpublic Object get(int index)
public int hashCode()
public int indexOf(Object element)
public int indexOf(Object element, int startIndex)
public boolean isEmpty()
public Iterator iterator()
public Object lastElement()
lastElement in class Vectorpublic int lastIndexOf(Object element)
lastIndexOf in interface ListlastIndexOf in class Vectorelement - The elementpublic int lastIndexOf(Object element, int startIndex)
lastIndexOf in class Vectorelement - The elementstartIndex - The start positionpublic ListIterator listIterator()
listIterator in interface ListlistIterator in class Vectorpublic ListIterator listIterator(int index)
listIterator in interface ListlistIterator in class Vectorindex - The start pointpublic int size()
public List subList(int from, int to)
public Object[] toArray()
public void add(int index,
Object element)
public boolean add(Object element)
public boolean addAll(Collection elements)
public boolean addAll(int index,
Collection elements)
public void addElement(Object element)
addElement in class Vectorelement - The new elementpublic void clear()
public boolean remove(Object element)
public boolean remove(Object element, boolean allowCascadeDelete)
remove in interface SCOCollectionremove in class Vectorelement - The elementallowCascadeDelete - Whether to allow cascade deletepublic Object remove(int index)
public boolean removeAll(Collection elements)
public boolean removeElement(Object element)
removeElement in class Vectorelement - The elementpublic void removeElementAt(int index)
removeElementAt in class Vectorindex - The element position.public void removeAllElements()
removeAllElements in class Vectorpublic boolean retainAll(Collection c)
public Object set(int index, Object element, boolean allowDependentField)
public Object set(int index, Object element)
public void setElementAt(Object element, int index)
setElementAt in class Vectorelement - The new elementindex - The positionprotected Object writeReplace() throws ObjectStreamException
writeReplace in class VectorObjectStreamExceptionCopyright © 2013. All Rights Reserved.