You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
Dismiss alert
memory-agape edited this page Apr 18, 2019
·
4 revisions
PHPJava\Kernel\Types\_Boolean
Introduction
_Boolean class is provided APIs for emulating Java's boolean on PHPJava.
How to use
The class can be pass boolean type into Java if you want.
For an example as follows:
Write Java:
classTest
{
publicstaticvoidechoEnabled(booleanisEnabled)
{
if (isEnabled) {
System.out.println("Excellent, This method is enabled.");
return;
}
System.out.println("OMG, This method is disabled.");
}
}