()
| 314 | public boolean isEmpty () {return mFluid == null;} |
| 315 | public boolean isFull () {return mAmount >= capacity();} |
| 316 | public boolean isHalf () {return mAmount * 2 >= capacity();} |
| 317 | public boolean overHalf () {return mAmount * 2 > capacity();} |
| 318 | public boolean underHalf() {return mAmount * 2 < capacity();} |
| 319 |