-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathBoolean_.php
More file actions
188 lines (171 loc) Β· 5.92 KB
/
Boolean_.php
File metadata and controls
188 lines (171 loc) Β· 5.92 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\lang;
use PHPJava\Exceptions\NotImplementedException;
// use PHPJava\Packages\java\io\Serializable;
// use PHPJava\Packages\java\lang\Comparable;
/**
* The `_Boolean` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class Boolean_ extends Object_ // implements Serializable, Comparable
{
/**
* The Boolean object corresponding to the primitive value false.
*
* @var mixed $FALSE
*/
public static $FALSE = null;
/**
* The Boolean object corresponding to the primitive value true.
*
* @var mixed $TRUE
*/
public static $TRUE = null;
/**
* The Class object representing the primitive type boolean.
*
* @var mixed $TYPE
*/
public static $TYPE = null;
/**
* Returns the value of this Boolean object as a boolean primitive.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#booleanValue
* @param null|mixed $a
* @throws NotImplementedException
*/
public function booleanValue($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Compares two boolean values.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#compare
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_compare($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Compares this Boolean instance with another.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#compareTo
* @param null|mixed $a
* @throws NotImplementedException
*/
public function compareTo($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns true if and only if the argument is not null and is a Boolean object that represents the same boolean value as this object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#equals
* @param null|mixed $a
* @throws NotImplementedException
*/
public function equals($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns true if and only if the system property named by the argument exists and is equal to, ignoring case, the string "true".
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getBoolean
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_getBoolean($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a hash code for this Boolean object.
* Returns a hash code for a boolean value; compatible with Boolean.hashCode().
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#hashCode
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_hashCode($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the result of applying the logical AND operator to the specified boolean operands.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#logicalAnd
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_logicalAnd($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the result of applying the logical OR operator to the specified boolean operands.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#logicalOr
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_logicalOr($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the result of applying the logical XOR operator to the specified boolean operands.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#logicalXor
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_logicalXor($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Parses the string argument as a boolean.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#parseBoolean
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_parseBoolean($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a String object representing this Boolean's value.
* Returns a String object representing the specified boolean.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#toString
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_toString($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a Boolean instance representing the specified boolean value.
* Returns a Boolean with a value represented by the specified string.
*
* @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__);
}
}