public interface IMediaList
extends com.aspose.ms.System.Collections.Generic.IGenericEnumerable<java.lang.String>
The MediaList interface provides the abstraction of an ordered collection of media, without defining or constraining how this collection is implemented. An empty list is the same as a list that contains the medium "all".
Modifier and Type | Method and Description |
---|---|
void |
appendMedium(java.lang.String newMedium)
Adds the medium newMedium to the end of the list.
|
void |
deleteMedium(java.lang.String oldMedium)
Deletes the medium indicated by oldMedium from the list.
|
java.lang.String |
get_Item(int index)
Returns the indexth in the list.
|
long |
getLength()
The number of media in the list.
|
java.lang.String |
getMediaText()
The parsable textual representation of the media list.
|
java.lang.String getMediaText()
The parsable textual representation of the media list. This is a comma-separated list of media.
long getLength()
The number of media in the list. The range of valid media is 0 to length-1 inclusive.
java.lang.String get_Item(int index)
Returns the indexth in the list. If index is greater than or equal to the number of media in the list, this returns null.
index
- The media index.void deleteMedium(java.lang.String oldMedium)
Deletes the medium indicated by oldMedium from the list.
oldMedium
- The old medium.void appendMedium(java.lang.String newMedium)
Adds the medium newMedium to the end of the list. If the newMedium is already used, it is first removed.
newMedium
- The new medium.