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

com.jn.langx.util.reflect.Parameter Maven / Gradle / Ivy

Go to download

Java lang extensions for java6+, a supplement to , replacement of a Guava, commons-lang. Core utilities, Collection utilities, IO utilities, Cache, Configuration library ...

There is a newer version: 4.8.2
Show newest version
package com.jn.langx.util.reflect;

import java.lang.annotation.Annotation;
import java.lang.reflect.AnnotatedElement;
import java.lang.reflect.Type;

public interface Parameter extends AnnotatedElement {
    boolean isNamePresent();

    T getDeclaringExecutable();

    int getModifiers();

    String getName();

    Type getParameterizedType();

    Class getType();

    boolean isImplicit();

    boolean isSynthetic();

    boolean isVarArgs();

     T[] getDeclaredAnnotationsByType(Class annotationClass);

     T[] getAnnotationsByType(Class annotationClass);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy