接口 IPoints

所有超级接口:
Iterable<IPoint>

public interface IPoints extends Iterable<IPoint>
Represents a collection of all the IPoint objects in the specifiedseries in a chart.
  • 方法概要

    修饰符和类型
    方法
    说明
    get(int index)
    Returns a single object from a collection.
    int
    Returns the number of objects in the collection.
    Returns the parent object for the specified object.

    从接口继承的方法 java.lang.Iterable

    forEach, iterator, spliterator
  • 方法详细资料

    • getCount

      int getCount()
      Returns the number of objects in the collection.
    • getParent

      ISeries getParent()
      Returns the parent object for the specified object.
    • get

      IPoint get(int index)
      Returns a single object from a collection.
      参数:
      index - The index number for the object.
      返回:
      The IPoint object.