public class

TimeListImpl

extends Object
implements TimeList
java.lang.Object
   ↳ com.android.mms.dom.smil.TimeListImpl

Summary

Public Methods
int getLength()
The number of times in the list.
Time item(int index)
Returns the index th item in the collection.
[Expand]
Inherited Methods
From class java.lang.Object
From interface org.w3c.dom.smil.TimeList

Public Methods

public int getLength ()

The number of times in the list. The range of valid child time indices is 0 to length-1 inclusive.

public Time item (int index)

Returns the index th item in the collection. If index is greater than or equal to the number of times in the list, this returns null .

Parameters
index Index into the collection.
Returns
  • The time at the index th position in the TimeList , or null if that is not a valid index.