dev.youshallnotpass.inspections.allfinal.nonfinals.Nonfinal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-inspections Show documentation
Show all versions of java-inspections Show documentation
Java inspections library for youshallnotpass
The newest version!
package dev.youshallnotpass.inspections.allfinal.nonfinals;
import dev.youshallnotpass.inspection.Violation;
public interface Nonfinal extends Violation {
boolean isInterfaceMethodParam();
boolean isLambdaParam();
boolean isCatchParam();
}