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

sun.net.spi.nameservice.NameService Maven / Gradle / Ivy

There is a newer version: 3.7.5
Show newest version
// SPDX-License-Identifier: BSD-3-Clause
package sun.net.spi.nameservice;

import java.net.InetAddress;
import java.net.UnknownHostException;

public interface NameService {
  InetAddress[] lookupAllHostAddr(String var1) throws UnknownHostException;

  String getHostByAddr(byte[] var1) throws UnknownHostException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy