public class MetadataPropertyList
extends java.lang.Object
implements java.io.Serializable
Type | Property and Description |
---|---|
java.util.Enumeration<? extends MetadataProperty> |
enumerateMetadata
Method enumerateMetadataProperty.
|
java.util.Iterator<? extends MetadataProperty> |
iterateMetadata
Method iterateMetadataProperty.
|
Constructor and Description |
---|
MetadataPropertyList() |
Modifier and Type | Method and Description |
---|---|
void |
addMetadataProperty(int index,
MetadataProperty vMetadataProperty) |
void |
addMetadataProperty(MetadataProperty vMetadataProperty) |
java.util.Enumeration<? extends MetadataProperty> |
enumerateMetadataProperty()
Method enumerateMetadataProperty.
|
MetadataProperty[] |
getMetadataProperty()
Method getMetadataProperty.Returns the contents of the
collection in an Array.
|
MetadataProperty |
getMetadataProperty(int index)
Method getMetadataProperty.
|
int |
getMetadataPropertyCount()
Method getMetadataPropertyCount.
|
java.util.Iterator<? extends MetadataProperty> |
iterateMetadataProperty()
Method iterateMetadataProperty.
|
void |
removeAllMetadataProperty() |
boolean |
removeMetadataProperty(MetadataProperty vMetadataProperty)
Method removeMetadataProperty.
|
MetadataProperty |
removeMetadataPropertyAt(int index)
Method removeMetadataPropertyAt.
|
void |
setMetadataProperty(int index,
MetadataProperty vMetadataProperty) |
void |
setMetadataProperty(MetadataProperty[] vMetadataPropertyArray) |
public java.util.Enumeration<? extends MetadataProperty> enumerateMetadataProperty
public java.util.Iterator<? extends MetadataProperty> iterateMetadataProperty
public void addMetadataProperty(MetadataProperty vMetadataProperty) throws java.lang.IndexOutOfBoundsException
vMetadataProperty
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void addMetadataProperty(int index, MetadataProperty vMetadataProperty) throws java.lang.IndexOutOfBoundsException
index
- vMetadataProperty
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic java.util.Enumeration<? extends MetadataProperty> enumerateMetadataProperty()
public MetadataProperty getMetadataProperty(int index) throws java.lang.IndexOutOfBoundsException
index
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic MetadataProperty[] getMetadataProperty()
Note: Just in case the collection contents are changing in another thread, we pass a 0-length Array of the correct type into the API call. This way we know that the Array returned is of exactly the correct length.
public int getMetadataPropertyCount()
public java.util.Iterator<? extends MetadataProperty> iterateMetadataProperty()
public void removeAllMetadataProperty()
public boolean removeMetadataProperty(MetadataProperty vMetadataProperty)
vMetadataProperty
- public MetadataProperty removeMetadataPropertyAt(int index)
index
- public void setMetadataProperty(int index, MetadataProperty vMetadataProperty) throws java.lang.IndexOutOfBoundsException
index
- vMetadataProperty
- java.lang.IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void setMetadataProperty(MetadataProperty[] vMetadataPropertyArray)
vMetadataPropertyArray
-