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

io.slugstack.rewritejavarecipes.internal.util.TreeUtils Maven / Gradle / Ivy

There is a newer version: 0.2.2
Show newest version
package io.slugstack.rewritejavarecipes.internal.util;

import org.openrewrite.java.tree.J;

import java.util.Optional;

public class TreeUtils {
    @SuppressWarnings("unchecked")
    public static  Optional whenType(Class treeType, J j) {
        return treeType.isAssignableFrom(j.getClass()) ? Optional.of((T) j) : Optional.empty();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy