com.tvd12.ezyhttp.server.management.data.JavaMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ezyhttp-server-management Show documentation
Show all versions of ezyhttp-server-management Show documentation
Provider managment APIs for ezyhttp server
The newest version!
package com.tvd12.ezyhttp.server.management.data;
import lombok.Getter;
import java.lang.reflect.Method;
@Getter
public class JavaMethod {
private final String name;
private final String clazz;
private final String packet;
public JavaMethod(Method method) {
this.name = method.getName();
this.clazz = method.getDeclaringClass().getSimpleName();
this.packet = method.getDeclaringClass().getPackage().getName();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy