org.reextractor.dto.Visibility Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of refactoring-extractor Show documentation
Show all versions of refactoring-extractor Show documentation
An automated refactoring detection algorithm
package org.reextractor.dto;
public enum Visibility {
PUBLIC, PRIVATE, PROTECTED, PACKAGE;
public String toString() {
return this.name().toLowerCase();
}
}