-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathStringTokenizer.php
More file actions
77 lines (70 loc) Β· 2.43 KB
/
StringTokenizer.php
File metadata and controls
77 lines (70 loc) Β· 2.43 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\util;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang\Object_;
// use PHPJava\Packages\java\util\Enumeration;
/**
* The `StringTokenizer` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class StringTokenizer extends Object_ // implements Enumeration
{
/**
* Calculates the number of times that this tokenizer's nextToken method can be called before it generates an exception.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#countTokens
* @param null|mixed $a
* @throws NotImplementedException
*/
public function countTokens($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the same value as the hasMoreTokens method.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#hasMoreElements
* @param null|mixed $a
* @throws NotImplementedException
*/
public function hasMoreElements($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Tests if there are more tokens available from this tokenizer's string.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#hasMoreTokens
* @param null|mixed $a
* @throws NotImplementedException
*/
public function hasMoreTokens($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the same value as the nextToken method, except that its declared return value is Object rather than String.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#nextElement
* @param null|mixed $a
* @throws NotImplementedException
*/
public function nextElement($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the next token from this string tokenizer.
* Returns the next token in this string tokenizer's string.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#nextToken
* @param null|mixed $a
* @throws NotImplementedException
*/
public function nextToken($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}