-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathLevel.php
More file actions
87 lines (74 loc) Β· 2.54 KB
/
Level.php
File metadata and controls
87 lines (74 loc) Β· 2.54 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\lang\System\Logger;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang\Enum;
// use PHPJava\Packages\java\io\Serializable;
// use PHPJava\Packages\java\lang\loggers;
/**
* The `Level` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
* @parent \PHPJava\Packages\java\lang\Enum
*/
class Level extends Enum // implements Serializable, loggers
{
// A marker to indicate that all levels are enabled.
const ALL = 'ALL';
// DEBUG level: usually used to log debug information traces.
const DEBUG = 'DEBUG';
// ERROR level: usually used to log error messages.
const ERROR = 'ERROR';
// INFO level: usually used to log information messages.
const INFO = 'INFO';
// A marker to indicate that all levels are disabled.
const OFF = 'OFF';
// TRACE level: usually used to log diagnostic information.
const TRACE = 'TRACE';
// WARNING level: usually used to log warning messages.
const WARNING = 'WARNING';
/**
* Returns the name of this level.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getName
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getName($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the severity of this level.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getSeverity
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getSeverity($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the enum constant of this type with the specified name.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#valueOf
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_valueOf($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an array containing the constants of this enum type, inthe order they are declared.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#values
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_values($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}