Modifier and Type | Method and Description |
---|---|
void |
add(Artifact artifact)
Adds artifacts to the collection.
|
void |
delete(Artifact artifact)
Deletes specified artifact.
|
void |
delete(int index)
Deletes artifact by its index.
|
List<Artifact> |
findByValue(String name,
String expectedValue)
Finds artifacts by custom value.
|
Artifact |
get_Item(int index)
Gets artifact by index.
|
Object |
getSyncRoot()
Gets synchronization object of the collection.
|
boolean |
isSynchronized()
Is this object synchronized.
|
com.aspose.ms.System.Collections.IEnumerator |
iterator()
Gets enumerator for the collection.
|
int |
size()
Gets count of artifacts in collection.
|
void |
update(Artifact artifact)
Update artifact inside the collection.
|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, spliterator
public boolean isSynchronized()
Is this object synchronized.
public int size()
Gets count of artifacts in collection.
public Object getSyncRoot()
Gets synchronization object of the collection.
public com.aspose.ms.System.Collections.IEnumerator iterator()
Gets enumerator for the collection.
public Artifact get_Item(int index)
Gets artifact by index. Index is started from 1.
index
- Index of the artifact.public void add(Artifact artifact)
Adds artifacts to the collection.
*artifact
- Artifact which sould be added to collection.public List<Artifact> findByValue(String name, String expectedValue)
Finds artifacts by custom value.
name
- Name of custom value.expectedValue
- Value to find.public void delete(Artifact artifact)
Deletes specified artifact.
artifact
- valuepublic void update(Artifact artifact)
Update artifact inside the collection.
artifact
- Artifact to be updated.public void delete(int index)
Deletes artifact by its index.
index
- Index of artifact to delete.Copyright © 2017 Aspose. All Rights Reserved.