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

org.openl.rules.webstudio.web.SearchScope Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
package org.openl.rules.webstudio.web;

public enum SearchScope {

    CURRENT_MODULE("Current Module"),
    CURRENT_PROJECT("Current Project"),
    ALL("ALL (includes dependency projects)");

    private final String label;

    SearchScope(String label) {
        this.label = label;
    }

    public String getLabel() {
        return label;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy