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

gr.uom.java.xmi.Visibility Maven / Gradle / Ivy

Go to download

RefactoringMiner is a library/API written in Java that can detect refactorings applied in the history of a Java project.

There is a newer version: 3.0.9
Show newest version
package gr.uom.java.xmi;

public enum Visibility {
	PUBLIC, PRIVATE, PROTECTED, PACKAGE;

	public String toString() {
		return this.name().toLowerCase();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy