-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathURLStreamHandler.php
More file actions
151 lines (140 loc) Β· 4.87 KB
/
URLStreamHandler.php
File metadata and controls
151 lines (140 loc) Β· 4.87 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\net;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang\Object_;
/**
* The `URLStreamHandler` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class URLStreamHandler extends Object_
{
/**
* Provides the default equals calculation.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#equals
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function equals($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the default port for a URL parsed by this handler.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#getDefaultPort
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getDefaultPort($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Get the IP address of our host.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#getHostAddress
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getHostAddress($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Provides the default hash calculation.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#hashCode
* @param null|mixed $a
* @throws NotImplementedException
*/
public function hashCode($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Compares the host components of two URLs.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#hostsEqual
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function hostsEqual($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Opens a connection to the object referenced by the URL argument.
* Same as openConnection(URL), except that the connection will be made through the specified proxy; Protocol handlers that do not support proxying will ignore the proxy parameter and make a normal connection.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#openConnection
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function openConnection($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Parses the string representation of a URL into a URL object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#parseURL
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @param null|mixed $d
* @throws NotImplementedException
*/
public function parseURL($a = null, $b = null, $c = null, $d = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Compare two urls to see whether they refer to the same file, i.e., having the same protocol, host, port, and path.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#sameFile
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function sameFile($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Deprecated.Use setURL(URL, String, String, int, String, String, String, String);
* Sets the fields of the URL argument to the indicated values.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#setURL
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @param null|mixed $d
* @param null|mixed $e
* @param null|mixed $f
* @param null|mixed $g
* @param null|mixed $h
* @param null|mixed $i
* @throws NotImplementedException
*/
public function setURL($a = null, $b = null, $c = null, $d = null, $e = null, $f = null, $g = null, $h = null, $i = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Converts a URL of a specific protocol to a String.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#toExternalForm
* @param null|mixed $a
* @throws NotImplementedException
*/
public function toExternalForm($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}