Class NextAnnotation


  • public class NextAnnotation
    extends java.lang.Object
    Next annotation.
    Author:
    Daniel Sagenschneider
    • Constructor Summary

      Constructors 
      Constructor Description
      NextAnnotation​(java.lang.String nextName, java.lang.Class<?> argumentType)
      Instantiate.
      NextAnnotation​(NextFunction nextFunction, java.lang.Class<?> argumentType)
      Instantiate.
      NextAnnotation​(Next next, java.lang.Class<?> argumentType)
      Instantiate.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Class<?> getArgumentType()
      Obtains the argument type for the Next.
      java.lang.String getNextName()
      Obtains the Next name.
      • Methods inherited from class java.lang.Object

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

      • NextAnnotation

        public NextAnnotation​(java.lang.String nextName,
                              java.lang.Class<?> argumentType)
        Instantiate.
        Parameters:
        nextName - Name of the Next.
        argumentType - Argument type for the Next.
      • NextAnnotation

        public NextAnnotation​(Next next,
                              java.lang.Class<?> argumentType)
        Instantiate.
        Parameters:
        next - Next.
        argumentType - Argument type for the Next.
      • NextAnnotation

        public NextAnnotation​(NextFunction nextFunction,
                              java.lang.Class<?> argumentType)
        Instantiate.
        Parameters:
        nextFunction - NextFunction.
        argumentType - Argument type for the NextFunction.
    • Method Detail

      • getNextName

        public java.lang.String getNextName()
        Obtains the Next name.
        Returns:
        Next name.
      • getArgumentType

        public java.lang.Class<?> getArgumentType()
        Obtains the argument type for the Next.
        Returns:
        Argument type for the Next.