Class Base<T>

java.lang.Object
com.legyver.utils.nippe.AbstractStepExecutor<T>
com.legyver.utils.nippe.Base<T>

public class Base<T>
extends AbstractStepExecutor<T>
Base class that is contains the args
Since:
2.0
  • Constructor Summary

    Constructors
    Constructor Description
    Base​(T args)
    Construct a Base with the innermost value
  • Method Summary

    Modifier and Type Method Description
    T execute()
    Returns the value directly

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Base

      public Base​(T args)
      Construct a Base with the innermost value
      Parameters:
      args - the value to be returned by the Base
  • Method Details

    • execute

      public T execute()
      Returns the value directly
      Specified by:
      execute in class AbstractStepExecutor<T>
      Returns:
      the value passed in to the constructor