RevisionCollection
遗产: java.lang.Object
所有已实现的接口: java.lang.Iterable
public class RevisionCollection implements Iterable
的集合Revision表示文档修订的对象。
要了解更多信息,请访问Track Changes in a Document文档文章。
您不直接创建此类的实例。使用Document.getRevisions()属性来获取文档中存在的修订。
方法
方法 | 描述 |
---|---|
acceptAll() | 接受此集合中的所有修订。 |
equals(Object arg0) | |
get(int index) | 返回指定索引处的修订。 |
getClass() | |
getCount() | 返回集合中的修订数。 |
getGroups() | 修订组的集合。 |
hashCode() | |
iterator() | 返回一个枚举器对象。 |
notify() | |
notifyAll() | |
rejectAll() | 拒绝此集合中的所有修订。 |
toString() | |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
acceptAll()
public void acceptAll()
接受此集合中的所有修订。
equals(Object arg0)
public boolean equals(Object arg0)
参数:
范围 | 类型 | 描述 |
---|---|---|
arg0 | java.lang.Object |
退货: 布尔值
get(int index)
public Revision get(int index)
返回指定索引处的修订。
该指数是从零开始的。
允许使用负索引,表示从集合的后面访问。例如 -1 表示最后一项,-2 表示倒数第二项,依此类推。
如果索引大于或等于列表中的项目数,则返回空引用。
如果索引为负且其绝对值大于列表中的项目数,则返回空引用。
参数:
范围 | 类型 | 描述 |
---|---|---|
index | int | 集合中的索引。 |
退货: Revision - 指定索引处的修订。
getClass()
public final native Class<?> getClass()
退货: java.lang.Class
getCount()
public int getCount()
返回集合中的修订数。
退货: int - 集合中的修订数。
getGroups()
public RevisionGroupCollection getGroups()
修订组的集合。
退货: RevisionGroupCollection - 相应的RevisionGroupCollection价值。
hashCode()
public native int hashCode()
退货: 整数
iterator()
public Iterator iterator()
返回一个枚举器对象。
退货: java.util.迭代器
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
rejectAll()
public void rejectAll()
拒绝此集合中的所有修订。
toString()
public String toString()
退货: java.lang.字符串
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
参数:
范围 | 类型 | 描述 |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
参数:
范围 | 类型 | 描述 |
---|---|---|
arg0 | long | |
arg1 | int |