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

javax.jmi.reflect.RefClass Maven / Gradle / Ivy

There is a newer version: 2.18.10
Show newest version
package javax.jmi.reflect;

import java.util.*;

@SuppressWarnings("rawtypes")
public interface RefClass extends RefFeatured {
    public RefObject refCreateInstance(List args);
    public Collection refAllOfType();
    public Collection refAllOfClass();
    public RefStruct refCreateStruct(RefObject struct, List params);
    public RefStruct refCreateStruct(String structName, List params);
    public RefEnum refGetEnum(RefObject enumType, String name);
    public RefEnum refGetEnum(String enumName, String name);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy