android.net.LinkProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-io Show documentation
Show all versions of core-io Show documentation
The official Couchbase JVM Core IO Library
// SPDX-License-Identifier: BSD-3-Clause
package android.net;
import java.net.InetAddress;
import java.util.List;
public class LinkProperties {
public List getDnsServers() {
throw new UnsupportedOperationException();
}
public String getDomains() {
throw new UnsupportedOperationException();
}
}