javax.jmi.reflect.RefEnum Maven / Gradle / Ivy
package javax.jmi.reflect;
import java.io.Serializable;
import java.util.List;
@SuppressWarnings("rawtypes")
public interface RefEnum extends Serializable {
public String toString();
public List refTypeName();
public boolean equals(Object other);
public int hashCode();
}