Returns if this vector has no elements, a size of zero. @return true if this vector has no elements, false otherwise. @see #size
()
| 575 | * @see #size |
| 576 | */ |
| 577 | @Override |
| 578 | public synchronized boolean isEmpty() { |
| 579 | return elementCount == 0; |
| 580 | } |
| 581 | |
| 582 | /** |
| 583 | * Returns the last element in this vector. |
no outgoing calls
no test coverage detected