| isEmpty() | ใช้ตรวจสอบว่า Properties ไม่มีข้อมูลอยู่เลย ใช่หรือไม่ |
|---|
method:isEmpty ();
return type:boolean
content:ใช้ตรวจสอบว่า Properties ไม่มีข้อมูลอยู่เลย ใช่หรือไม่
example:Properties properties = new Properties (); if ( properties.isEmpty () ) { System.out.println ( "Properties is empty" ); }