Check if trailer fields are ready. @return true if trailer fields are ready
()
| 326 | * @return {@code true} if trailer fields are ready |
| 327 | */ |
| 328 | public boolean isTrailerFieldsReady() { |
| 329 | AtomicBoolean result = new AtomicBoolean(false); |
| 330 | action(ActionCode.IS_TRAILER_FIELDS_READY, result); |
| 331 | return result.get(); |
| 332 | } |
| 333 | |
| 334 | |
| 335 | /** |