2026-03-17 13:31:18 -07:00

25 lines
612 B
Java

package oracle.net.TNSAddress;
import oracle.net.nl.NLException;
import oracle.net.nl.NVPair;
public interface SchemaObject {
public static final int ADDR = 0;
public static final int ADDR_LIST = 1;
public static final int ALIAS = 4;
public static final int DB_SERVICE = 6;
public static final int DESC = 2;
public static final int DESC_LIST = 3;
public static final int SERVICE = 5;
void initFromNVPair(NVPair nVPair) throws SOException;
void initFromString(String str) throws NLException, SOException;
int isA();
String isA_String();
String toString();
}