-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathContentHandler.php
More file actions
28 lines (26 loc) · 1009 Bytes
/
ContentHandler.php
File metadata and controls
28 lines (26 loc) · 1009 Bytes
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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\net;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang\Object_;
/**
* The `ContentHandler` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class ContentHandler extends Object_
{
/**
* Given a URL connect stream positioned at the beginning of the representation of an object, this method reads that stream and creates an object from it.
* Given a URL connect stream positioned at the beginning of the representation of an object, this method reads that stream and creates an object that matches one of the types specified.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#getContent
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function getContent($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
}