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

org.apache.skywalking.apm.dependencies.net.bytebuddy.description.DeclaredByType Maven / Gradle / Ivy

There is a newer version: 9.2.0
Show newest version
package org.apache.skywalking.apm.dependencies.net.bytebuddy.description;

import org.apache.skywalking.apm.dependencies.net.bytebuddy.description.type.TypeDefinition;

/**
 * This interface represents all elements that can be declared within a type, i.e. other types and type members.
 */
public interface DeclaredByType {

    /**
     * Returns the declaring type of this instance.
     *
     * @return The declaring type or {@code null} if no such type exists.
     */
    TypeDefinition getDeclaringType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy