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

net.bytebuddy.instrumentation.NamedElement Maven / Gradle / Ivy

package net.bytebuddy.instrumentation;

/**
 * Represents a Java element with a name.
 */
public interface NamedElement {

    /**
     * Returns the internalName of this byte code element.
     *
     * @return The internalName of this byte code element as visible from within a running Java application.
     */
    String getName();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy