Interface Initializable


public interface Initializable
Defines an interface for objects that require late initialization.
Since:
0.2.0
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Initializes the object.
  • Method Details

    • init

      boolean init()
      Initializes the object. Implementations should perform all necessary setup here.
      Returns:
      boolean Returns true if initialization is successful, false otherwise.