-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathClassValue.php
More file actions
49 lines (45 loc) · 1.33 KB
/
ClassValue.php
File metadata and controls
49 lines (45 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
45
46
47
48
49
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\lang;
use PHPJava\Exceptions\NotImplementedException;
/**
* The `ClassValue` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class ClassValue extends Object_
{
/**
* Computes the given class's derived value for this ClassValue.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#computeValue
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function computeValue($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the value for the given class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#get
* @param null|mixed $a
* @throws NotImplementedException
*/
public function get($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Removes the associated value for the given class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#remove
* @param null|mixed $a
* @throws NotImplementedException
*/
public function remove($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}