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

net.lenni0451.lambdaevents.utils.LookupGetter Maven / Gradle / Ivy

The newest version!
package net.lenni0451.lambdaevents.utils;

import javax.annotation.Nonnull;
import java.lang.invoke.MethodHandles;

/**
 * A wrapper class to get the {@link MethodHandles.Lookup} for the current {@link ClassLoader}.
 */
public class LookupGetter {

    @Nonnull
    public static MethodHandles.Lookup get() {
        return MethodHandles.lookup();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy