-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathIDN.php
More file actions
56 lines (51 loc) · 1.81 KB
/
IDN.php
File metadata and controls
56 lines (51 loc) · 1.81 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\net;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang\Object_;
/**
* The `IDN` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class IDN extends Object_
{
/**
* Flag to allow processing of unassigned code points.
*
* @var mixed $ALLOW_UNASSIGNED
*/
public static $ALLOW_UNASSIGNED = null;
/**
* Flag to turn on the check against STD-3 ASCII rules.
*
* @var mixed $USE_STD3_ASCII_RULES
*/
public static $USE_STD3_ASCII_RULES = null;
/**
* Translates a string from Unicode to ASCII Compatible Encoding (ACE), as defined by the ToASCII operation of RFC 3490.
* Translates a string from Unicode to ASCII Compatible Encoding (ACE), as defined by the ToASCII operation of RFC 3490.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#toASCII
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_toASCII($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Translates a string from ASCII Compatible Encoding (ACE) to Unicode, as defined by the ToUnicode operation of RFC 3490.
* Translates a string from ASCII Compatible Encoding (ACE) to Unicode, as defined by the ToUnicode operation of RFC 3490.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#toUnicode
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_toUnicode($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
}