net.lenni0451.lambdaevents.utils.LookupGetter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of LambdaEvents Show documentation
Show all versions of LambdaEvents Show documentation
Fast and modular event library for Java
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();
}
}