GradientStopCollection

遗产: java.lang.Object

所有已实现的接口: java.lang.Iterable

public class GradientStopCollection implements Iterable

包含一个集合GradientStop对象。

要了解更多信息,请访问Working with Graphic Elements文档文章。

您不直接创建此类的实例。使用Fill.getGradientStops()属性以访问填充对象的渐变停止点。

方法

方法描述
add(GradientStop gradientStop)添加一个指定的GradientStop到一个梯度。
equals(Object arg0)
get(int index)得到一个GradientStop集合中的对象。
getClass()
getCount()获取一个整数值,该值指示集合中的项数。
hashCode()
insert(int index, GradientStop gradientStop)插入一个GradientStop到指定索引处的集合。
iterator()返回循环访问集合的枚举器。
notify()
notifyAll()
remove(GradientStop gradientStop)删除指定的GradientStop从集合中。
removeAt(int index)删除一个GradientStop来自指定索引处的集合。
set(int index, GradientStop value)设置一个GradientStop集合中的对象。
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

add(GradientStop gradientStop)

public GradientStop add(GradientStop gradientStop)

添加一个指定的GradientStop到一个梯度。

参数:

范围类型描述
gradientStopGradientStop

退货: GradientStop

equals(Object arg0)

public boolean equals(Object arg0)

参数:

范围类型描述
arg0java.lang.Object

退货: 布尔值

get(int index)

public GradientStop get(int index)

得到一个GradientStop集合中的对象。

参数:

范围类型描述
indexint

退货: GradientStop - 一个GradientStop集合中的对象。

getClass()

public final native Class<?> getClass()

退货: java.lang.Class

getCount()

public int getCount()

获取一个整数值,该值指示集合中的项数。

退货: int - 一个整数值,指示集合中的项目数。

hashCode()

public native int hashCode()

退货: 整数

insert(int index, GradientStop gradientStop)

public GradientStop insert(int index, GradientStop gradientStop)

插入一个GradientStop到指定索引处的集合。

参数:

范围类型描述
indexint
gradientStopGradientStop

退货: GradientStop

iterator()

public Iterator iterator()

返回循环访问集合的枚举器。

退货: java.util.迭代器

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

remove(GradientStop gradientStop)

public boolean remove(GradientStop gradientStop)

删除指定的GradientStop从集合中。

参数:

范围类型描述
gradientStopGradientStop

退货: boolean - 如果梯度停止被成功移除则为 True,否则为 false。

removeAt(int index)

public GradientStop removeAt(int index)

删除一个GradientStop来自指定索引处的集合。

参数:

范围类型描述
indexint

退货: GradientStop - 删除GradientStop.

set(int index, GradientStop value)

public void set(int index, GradientStop value)

设置一个GradientStop集合中的对象。

参数:

范围类型描述
indexint
valueGradientStop一个GradientStop集合中的对象。

toString()

public String toString()

退货: java.lang.字符串

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

参数:

范围类型描述
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

参数:

范围类型描述
arg0long
arg1int