forked from github/codeql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServerAddress.java
More file actions
64 lines (47 loc) · 1.31 KB
/
Copy pathServerAddress.java
File metadata and controls
64 lines (47 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// 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;
}
}