net.yudichev.jiotty.common.lang.HasName Maven / Gradle / Ivy
package net.yudichev.jiotty.common.lang;
public interface HasName {
default String name() {
return String.format("%s @ %s", getClass().getSimpleName(), System.identityHashCode(this));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy