| |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
A sequence is a heterogeneous list of properties and corresponding values. It represents an ordered arbitrary mixture of data values from more than one property of a data object.
Method Summary | |
void | add(int index,
int propertyIndex,
Object value)
Adds a new entry with the specified property index and value at the specified entry index. |
boolean | add(int propertyIndex,
Object value)
Adds a new entry with the specified property index and value to the end of the entries. |
void | add(int index,
Property property,
Object value)
Adds a new entry with the specified property and value at the specified entry index. |
void | add(int index,
String propertyName,
Object value)
Adds a new entry with the specified property name and value at the specified entry index. |
boolean | add(Property property,
Object value)
Adds a new entry with the specified property and value to the end of the entries. |
boolean | add(String propertyName,
Object value)
Adds a new entry with the specified property name and value to the end of the entries. |
Property | getProperty(int index)
Returns the property for the given entry index. |
Object | getValue(int index)
Returns the property value for the given entry index. |
void | move(int toIndex,
int fromIndex)
Moves the entry at fromIndex to toIndex. |
void | remove(int index)
Removes the entry at the given entry index. |
Object | setValue(int index,
Object value)
Sets the entry at a specified index to the new value. |
int | size()
Returns the number of entries in the sequence. |
Method Detail |
public int size()
public Property getProperty(int index)
public Object getValue(int index)
public Object setValue(int index, Object value)
public boolean add(String propertyName, Object value)
public boolean add(int propertyIndex, Object value)
public boolean add(Property property, Object value)
public void add(int index, String propertyName, Object value)
public void add(int index, int propertyIndex, Object value)
public void add(int index, Property property, Object value)
public void remove(int index)
public void move(int toIndex, int fromIndex)
|
Copyright 2001-2004 IBM Corporation and others. All Rights Reserved. | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |