mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
65 lines
1.3 KiB
Java
Generated
65 lines
1.3 KiB
Java
Generated
// Failed to get sources. Instead, stub sources have been generated by the disassembler.
|
|
// Implementation of methods is unavailable.
|
|
package com.mongodb;
|
|
|
|
public class ServerAddress implements java.io.Serializable {
|
|
|
|
public ServerAddress() {
|
|
}
|
|
|
|
public ServerAddress(java.lang.String host) {
|
|
}
|
|
|
|
public ServerAddress(java.net.InetAddress inetAddress) {
|
|
}
|
|
|
|
public ServerAddress(java.net.InetAddress inetAddress, int port) {
|
|
}
|
|
|
|
public ServerAddress(java.net.InetSocketAddress inetSocketAddress) {
|
|
}
|
|
|
|
public ServerAddress(java.lang.String host, int port) {
|
|
}
|
|
|
|
public boolean equals(java.lang.Object o) {
|
|
return false;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return 0;
|
|
}
|
|
|
|
public java.lang.String getHost() {
|
|
return null;
|
|
}
|
|
|
|
public int getPort() {
|
|
return 0;
|
|
}
|
|
|
|
public java.net.InetSocketAddress getSocketAddress() {
|
|
return null;
|
|
}
|
|
|
|
public java.util.List<java.net.InetSocketAddress> getSocketAddresses() {
|
|
return null;
|
|
}
|
|
|
|
public java.lang.String toString() {
|
|
return null;
|
|
}
|
|
|
|
public static java.lang.String defaultHost() {
|
|
return null;
|
|
}
|
|
|
|
public static int defaultPort() {
|
|
return 0;
|
|
}
|
|
|
|
public boolean sameHost(java.lang.String hostName) {
|
|
return false;
|
|
}
|
|
}
|