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

com.alibaba.jvm.sandbox.api.resource.LoadedClassDataSource Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.alibaba.jvm.sandbox.api.resource;

import com.alibaba.jvm.sandbox.api.filter.Filter;

import java.util.Set;

/**
 * 已加载类数据源
 *
 * @author [email protected]
 */
public interface LoadedClassDataSource {

    /**
     * 获取所有已加载的类集合
     *
     * @return 所有已加载的类集合
     */
    Set> list();

    /**
     * 根据过滤器搜索出匹配的类集合
     *
     * @param filter 扩展过滤器
     * @return 匹配的类集合
     */
    Set> find(Filter filter);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy