-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathEnumeration.php
More file actions
44 lines (40 loc) · 1.33 KB
/
Enumeration.php
File metadata and controls
44 lines (40 loc) · 1.33 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\util;
use PHPJava\Exceptions\NotImplementedException;
/**
* The `Enumeration` interface was auto generated.
*/
interface Enumeration
{
/**
* Returns an Iterator that traverses the remaining elements covered by this enumeration.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#asIterator
* @NotImplemented
*/
// public function asIterator($a = null)
/**
* Tests if this enumeration contains more elements.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#hasMoreElements
* @NotImplemented
*/
// public function hasMoreElements($a = null)
/**
* Returns the next element of this enumeration if this enumeration object has at least one more element to provide.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#nextElement
* @NotImplemented
*/
// public function nextElement($a = null)
}