public interface ObjectArray<K>
Modifier and Type | Method and Description |
---|---|
void |
addElement(int index,
K element)
Add the element at the specific index
|
int |
addElement(K element)
Add the element to the array
|
void |
exportToFile(org.processmining.framework.plugin.PluginContext context,
java.io.File file) |
K |
getElement(int index)
Return the element at the specific index
|
int |
getSize() |
void |
importFromStream(org.processmining.framework.plugin.PluginContext context,
java.io.InputStream input,
java.lang.String parent) |
void |
init()
Initializes the object array.
|
void |
removeElement(int index)
Remove the element at the specific index
|
int |
removeElement(K element)
Remove the element from the array
|
void init()
int addElement(K element)
element
- int removeElement(K element)
element
- void addElement(int index, K element)
index
- element
- void removeElement(int index)
index
- K getElement(int index)
index
- int getSize()
void importFromStream(org.processmining.framework.plugin.PluginContext context, java.io.InputStream input, java.lang.String parent) throws java.lang.Exception
java.lang.Exception
void exportToFile(org.processmining.framework.plugin.PluginContext context, java.io.File file) throws java.lang.Exception
java.lang.Exception