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

fun.feellmoose.enums.Scope Maven / Gradle / Ivy

There is a newer version: 0.1.3
Show newest version
package fun.feellmoose.enums;

/**
 * @projectName: sast-link-SDK
 * @author: feelMoose
 * @date: 2023/8/22 9:40
 */
public enum Scope {
    ALL("all");

    Scope(String name) {
        this.name = name;
    }

    public final String name;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy