Skip to content

Commit 4099766

Browse files
committed
Add packages
1 parent 7965b41 commit 4099766

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+10212
-0
lines changed
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<?php
2+
namespace PHPJava\Packages\java\lang;
3+
4+
use PHPJava\Exceptions\NotImplementedException;
5+
use PHPJava\Packages\java\lang\_Object;
6+
7+
8+
/**
9+
* The `ClassValue` class was auto generated.
10+
*
11+
* @parent \PHPJava\Packages\java\lang\_Object
12+
*/
13+
class ClassValue extends _Object
14+
{
15+
16+
/**
17+
* Computes the given class's derived value for this ClassValue.
18+
*
19+
* @param mixed $a
20+
* @return mixed
21+
* @throws NotImplementedException
22+
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#computeValue
23+
*/
24+
protected function computeValue($a = null)
25+
{
26+
throw new NotImplementedException(__METHOD__);
27+
}
28+
29+
/**
30+
* Returns the value for the given class.
31+
*
32+
* @param mixed $a
33+
* @return mixed
34+
* @throws NotImplementedException
35+
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#get
36+
*/
37+
public function get($a = null)
38+
{
39+
throw new NotImplementedException(__METHOD__);
40+
}
41+
42+
/**
43+
* Removes the associated value for the given class.
44+
*
45+
* @param mixed $a
46+
* @return mixed
47+
* @throws NotImplementedException
48+
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#remove
49+
*/
50+
public function remove($a = null)
51+
{
52+
throw new NotImplementedException(__METHOD__);
53+
}
54+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
namespace PHPJava\Packages\java\lang;
3+
4+
use PHPJava\Exceptions\NotImplementedException;
5+
use PHPJava\Packages\java\lang;
6+
7+
/**
8+
* The `Comparable` interface was auto generated.
9+
*/
10+
interface Comparable
11+
{
12+
/**
13+
* Compares this object with the specified object for order.
14+
*
15+
* @param mixed $a
16+
* @return mixed
17+
* @throws NotImplementedException
18+
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#compareTo
19+
* @NotImplemented
20+
*/
21+
// public function compareTo($a = null)
22+
}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?php
2+
namespace PHPJava\Packages\java\lang;
3+
4+
use PHPJava\Exceptions\NotImplementedException;
5+
use PHPJava\Packages\java\lang\ThreadLocal;
6+
7+
8+
/**
9+
* The `InheritableThreadLocal` class was auto generated.
10+
*
11+
* @parent \PHPJava\Packages\java\lang\_Object
12+
* @parent \PHPJava\Packages\java\lang\ThreadLocal
13+
*/
14+
class InheritableThreadLocal extends ThreadLocal
15+
{
16+
17+
/**
18+
* Computes the child's initial value for this inheritable thread-local variable as a function of the parent's value at the time the child thread is created.
19+
*
20+
* @param mixed $a
21+
* @return mixed
22+
* @throws NotImplementedException
23+
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#childValue
24+
*/
25+
protected function childValue($a = null)
26+
{
27+
throw new NotImplementedException(__METHOD__);
28+
}
29+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<?php
2+
namespace PHPJava\Packages\java\lang;
3+
4+
use PHPJava\Exceptions\NotImplementedException;
5+
use PHPJava\Packages\java\lang;
6+
7+
/**
8+
* The `Iterable` interface was auto generated.
9+
*/
10+
interface Iterable
11+
{
12+
/**
13+
* Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
14+
*
15+
* @param mixed $a
16+
* @return mixed
17+
* @throws NotImplementedException
18+
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#forEach
19+
* @NotImplemented
20+
*/
21+
// public function forEach($a = null)
22+
23+
/**
24+
* Returns an iterator over elements of type T.
25+
*
26+
* @param mixed $a
27+
* @return mixed
28+
* @throws NotImplementedException
29+
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#iterator
30+
* @NotImplemented
31+
*/
32+
// public function iterator($a = null)
33+
34+
/**
35+
* Creates a Spliterator over the elements described by this Iterable.
36+
*
37+
* @param mixed $a
38+
* @return mixed
39+
* @throws NotImplementedException
40+
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#spliterator
41+
* @NotImplemented
42+
*/
43+
// public function spliterator($a = null)
44+
}

0 commit comments

Comments
 (0)