All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.qiniu.storage.model.AccessStyleMode Maven / Gradle / Ivy

There is a newer version: 7.17.0
Show newest version
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