-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCharSequence.php
More file actions
91 lines (83 loc) Β· 2.74 KB
/
CharSequence.php
File metadata and controls
91 lines (83 loc) Β· 2.74 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\lang;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang;
/**
* The `CharSequence` interface was auto generated.
*/
interface CharSequence
{
/**
* Returns the char value at the specified index.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#charAt
* @NotImplemented
*/
// public function charAt($a = null)
/**
* Returns a stream of int zero-extending the char values from this sequence.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#chars
* @NotImplemented
*/
// public function chars($a = null)
/**
* Returns a stream of code point values from this sequence.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#codePoints
* @NotImplemented
*/
// public function codePoints($a = null)
/**
* Compares two CharSequence instances lexicographically.
*
* @param mixed $a
* @param mixed $b
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#compare
* @NotImplemented
*/
// public static function static_compare($a = null, $b = null)
/**
* Returns the length of this character sequence.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#length
* @NotImplemented
*/
// public function length($a = null)
/**
* Returns a CharSequence that is a subsequence of this sequence.
*
* @param mixed $a
* @param mixed $b
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#subSequence
* @NotImplemented
*/
// public function subSequence($a = null, $b = null)
/**
* Returns a string containing the characters in this sequence in the same order as this sequence.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#toString
* @NotImplemented
*/
// public function toString($a = null)
}