Interface LayerInterface

    • Method Summary

      Modifier and Type Method Description
      java.lang.String getImplName()
      Return the layer implementation name.
      default java.lang.String getRegex()
      Returns a regex to math, this regex only gonna by used if the get layer method not found any layer with the specific name.
      default boolean isDistributed()
      Returns true if the layer implementation is instance of DistributedLayer.
      boolean isPlugin()
      Returns true if the layer is a plugin or false in the otherwise.
      boolean isStateful()
      Returns true if the layer is stateful or false in the otherwise.
      • Methods inherited from interface java.lang.reflect.InvocationHandler

        invoke
    • Method Detail

      • getImplName

        java.lang.String getImplName()
        Return the layer implementation name.
        Returns:
        Layer implementation name.
      • getRegex

        default java.lang.String getRegex()
        Returns a regex to math, this regex only gonna by used if the get layer method not found any layer with the specific name.
        Returns:
        Regex value. Null by default.
      • isStateful

        boolean isStateful()
        Returns true if the layer is stateful or false in the otherwise.
        Returns:
        Stateful
      • isPlugin

        boolean isPlugin()
        Returns true if the layer is a plugin or false in the otherwise.
        Returns:
        Plugin status.
      • isDistributed

        default boolean isDistributed()
        Returns true if the layer implementation is instance of DistributedLayer.
        Returns:
        True if the layer implementation is instance of DistributedLayer and false in the otherwise.