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

net.jbock.common.SafeElements Maven / Gradle / Ivy

There is a newer version: 5.18
Show newest version
package net.jbock.common;

import javax.lang.model.element.TypeElement;
import javax.lang.model.util.Elements;
import java.util.Optional;

public class SafeElements {

    private final Elements elements;

    public SafeElements(Elements elements) {
        this.elements = elements;
    }

    public Optional getTypeElement(String name) {
        return Optional.ofNullable(elements.getTypeElement(name));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy