Class VisitorInfo.ReturnInfo

  • Enclosing class:
    VisitorInfo

    public class VisitorInfo.ReturnInfo
    extends java.lang.Object
    Class holding a return type info.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String fullType
      Full return type : type + [] for an array
      java.lang.String initializer
      The return variable proposed initialiser
      boolean isTypeParameter
      True if the return type is a type parameter, false otherwise
      boolean isVoid
      True if the return type is void, false otherwise
      java.lang.String type
      Return type : void, [A-Z] (type parameter), java primitive types, user class name
    • Constructor Summary

      Constructors 
      Constructor Description
      ReturnInfo()  
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • type

        public java.lang.String type
        Return type : void, [A-Z] (type parameter), java primitive types, user class name
      • fullType

        public java.lang.String fullType
        Full return type : type + [] for an array
      • isVoid

        public boolean isVoid
        True if the return type is void, false otherwise
      • isTypeParameter

        public boolean isTypeParameter
        True if the return type is a type parameter, false otherwise
      • initializer

        public java.lang.String initializer
        The return variable proposed initialiser
    • Constructor Detail

      • ReturnInfo

        public ReturnInfo()