org.mutabilitydetector.checkers.MethodIs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MutabilityDetector Show documentation
Show all versions of MutabilityDetector Show documentation
Lightweight analysis tool for detecting mutability in Java
classes.
package org.mutabilitydetector.checkers;
public final class MethodIs {
private MethodIs() { }
public static boolean aConstructor(String name) {
return name.equals("");
}
}