-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathDecoder.php
More file actions
42 lines (39 loc) · 1.54 KB
/
Decoder.php
File metadata and controls
42 lines (39 loc) · 1.54 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\util\Base64;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang\Object_;
/**
* The `Decoder` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class Decoder extends Object_
{
/**
* Decodes all bytes from the input byte array using the Base64 encoding scheme, writing the results into a newly-allocated output byte array.
* Decodes all bytes from the input byte array using the Base64 encoding scheme, writing the results into the given output byte array, starting at offset 0.
* Decodes a Base64 encoded String into a newly-allocated byte array using the Base64 encoding scheme.
* Decodes all bytes from the input byte buffer using the Base64 encoding scheme, writing the results into a newly-allocated ByteBuffer.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#decode
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function decode($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an input stream for decoding Base64 encoded byte stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#wrap
* @param null|mixed $a
* @throws NotImplementedException
*/
public function wrap($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}