public class ListBucketVersions
extends java.lang.Object
限定符和类型 | 类和说明 |
---|---|
static class |
ListBucketVersions.DeleteMarker |
static class |
ListBucketVersions.ObjectVersion
对象版本条目
|
static class |
ListBucketVersions.Owner
对象持有者信息
|
static class |
ListBucketVersions.Version |
限定符和类型 | 字段和说明 |
---|---|
boolean |
isTruncated
响应条目是否被截断,布尔值,例如 true 或 false
|
java.lang.String |
keyMarker
起始对象键标记,从该标记之后(不含)按照 UTF-8 字典序返回对象版本条目,对应请求中的 key-marker 参数
|
long |
maxKeys
单次响应返回结果的最大条目数量,对应请求中的 max-keys 参数
|
java.lang.String |
name
存储桶的名称
|
java.lang.String |
nextKeyMarker
仅当响应条目有截断(IsTruncated 为 true)才会返回该节点,
该节点的值为当前响应条目中的最后一个对象键,当需要继续请求后续条目时,将该节点的值作为下一次请求的 key-marker 参数传入
|
java.lang.String |
nextVersionIdMarker
仅当响应条目有截断(IsTruncated 为 true)才会返回该节点,
该节点的值为当前响应条目中的最后一个对象的版本 ID,当需要继续请求后续条目时,将该节点的值作为下一次请求的 version-id-marker 参数传入
|
java.util.List<ListBucketVersions.ObjectVersion> |
objectVersionList
对象版本条目列表
|
java.lang.String |
prefix
对象键匹配前缀,对应请求中的 prefix 参数
|
java.lang.String |
versionIdMarker
起始版本 ID 标记,从该标记之后(不含)返回对象版本条目,对应请求中的 version-id-marker 参数
|
构造器和说明 |
---|
ListBucketVersions() |
public java.lang.String name
public java.lang.String prefix
public java.lang.String keyMarker
public java.lang.String versionIdMarker
public long maxKeys
public boolean isTruncated
public java.lang.String nextKeyMarker
public java.lang.String nextVersionIdMarker
public java.util.List<ListBucketVersions.ObjectVersion> objectVersionList
public java.lang.String toString()
java.lang.Object
toString
method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString
method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@
', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())
toString
在类中 java.lang.Object