com.netease.cloud.services.nos.model.DeduplicateStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nos-sdk-java-publiccloud Show documentation
Show all versions of nos-sdk-java-publiccloud Show documentation
nos java sdk to the Central Repository
The newest version!
package com.netease.cloud.services.nos.model;
/**
* Specifies constants defining Deduplicate Status
*
*/
public enum DeduplicateStatus {
/** Means the bucket deduplicate function is used. **/
Enabled("enabled"),
/** Means the bucket deduplicate function is closed. **/
Disabled("disabled"),
/** Means the bucket deduplicate function is closed. **/
Suspended("suspended");
private final String deduplicate;
private DeduplicateStatus(String deduplicate) {
this.deduplicate = deduplicate;
}
public String toString() {
return this.deduplicate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy