com.aspose.slides

Interfaces

Classes

Exceptions

com.aspose.slides

Class SequenceCollection

  • java.lang.Object
    • com.aspose.slides.SequenceCollection
  • All Implemented Interfaces:
    com.aspose.ms.System.Collections.Generic.IGenericEnumerable<ISequence>, com.aspose.ms.System.Collections.IEnumerable<ISequence>, ISequenceCollection, java.lang.Iterable<ISequence>


    public class SequenceCollection
    extends java.lang.Object
    implements ISequenceCollection

    Represent collection of interactive sequences.

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      ISequence add(IShape shapeTrigger)
      Add new interactive sequence.
      void clear()
      Removes all sequences from a collection.
      ISequence get_Item(int index)
      Returns a sequense at the specified index.
      int getCount()
      Returns the number of elements in a collection Read-only int.
      com.aspose.ms.System.Collections.Generic.IGenericEnumerator<ISequence> iterator()
      Returns an enumerator that iterates through the collection.
      void remove(ISequence item)
      Removes specified sequence from a collection.
      void removeAt(int index)
      Removes sequence at the specified index.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
    • Method Detail

      • getCount

        public final int getCount()

        Returns the number of elements in a collection Read-only int.

        Specified by:
        getCount in interface ISequenceCollection
      • remove

        public final void remove(ISequence item)

        Removes specified sequence from a collection.

        Specified by:
        remove in interface ISequenceCollection
        Parameters:
        item - Sequence to remove.
      • removeAt

        public final void removeAt(int index)

        Removes sequence at the specified index.

        Specified by:
        removeAt in interface ISequenceCollection
        Parameters:
        index - Index of a sequence that should be deleted.
      • clear

        public final void clear()

        Removes all sequences from a collection.

        Specified by:
        clear in interface ISequenceCollection
      • get_Item

        public final ISequence get_Item(int index)

        Returns a sequense at the specified index.

        Specified by:
        get_Item in interface ISequenceCollection
        Parameters:
        index - Index of element.
        Returns:
        The ISequence object.
      • iterator

        public final com.aspose.ms.System.Collections.Generic.IGenericEnumerator<ISequence> iterator()

        Returns an enumerator that iterates through the collection.

        Specified by:
        iterator in interface com.aspose.ms.System.Collections.Generic.IGenericEnumerable<ISequence>
        Specified by:
        iterator in interface com.aspose.ms.System.Collections.IEnumerable<ISequence>
        Specified by:
        iterator in interface java.lang.Iterable<ISequence>
        Returns:
        A System.Collections.Generic.IEnumerator`1 that can be used to iterate through the collection.