Interface Disposable

All Known Implementing Classes:
DisposableTemplate

@Weight(VARIABLE) public interface Disposable
Auxiliary interface describing disposable object.
Since:
1.0
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Dispose object.
    boolean
    Check that the object is disposed.
  • Method Details

    • isDisposed

      boolean isDisposed()
      Check that the object is disposed.
      Returns:
      true if the object is disposed
      Since:
      1.0
    • dispose

      void dispose()
      Dispose object.
      Since:
      1.0