接口 IGroupShapes

所有超级接口:
Iterable<IShape>

public interface IGroupShapes extends Iterable<IShape>
Represents the individual shapes within a grouped shape.
  • 方法概要

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

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

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

    • getCount

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

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

      IShape get(String name)
      Returns a single object from a collection.
      参数:
      name - The name for the object.