com.qiniu.storage.model.AccessStyleMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qiniu-java-sdk Show documentation
Show all versions of qiniu-java-sdk Show documentation
Qiniu Cloud Storage SDK for Java
package com.qiniu.storage.model;
/**
* 原图保护模式
*/
public enum AccessStyleMode {
/**
* 原图保护关闭
*/
CLOSE(0),
/**
* 原图保护开启
*/
OPEN(1);
private int type = 0;
AccessStyleMode(int t) {
type = t;
}
public int getType() {
return type;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy