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

org.fiolino.common.analyzing.AnalyzedElement Maven / Gradle / Ivy

Go to download

General structure to easily create dynamic logic via MethodHandles and others.

There is a newer version: 1.0.10
Show newest version
package org.fiolino.common.analyzing;

import java.lang.reflect.AccessibleObject;
import java.lang.reflect.Field;
import java.lang.reflect.Method;

/**
 * Created by kuli on 26.11.15.
 */
public enum AnalyzedElement {
    FIELD(Field.class),
    METHOD(Method.class);

    private final Class accessibleType;

    AnalyzedElement(Class accessibleType) {
        this.accessibleType = accessibleType;
    }

    public Class getAccessibleType() {
        return accessibleType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy