Class TypePool.Default.LazyTypeDescription.MethodToken.ParameterToken

    • Field Detail

      • NO_NAME

        protected static final String NO_NAME
        Donates an unknown name of a parameter.
      • NO_MODIFIERS

        protected static final Integer NO_MODIFIERS
        Donates an unknown modifier of a parameter.
    • Constructor Detail

      • ParameterToken

        protected ParameterToken()
        Creates a parameter token for a parameter without an explicit name and without specific modifiers.
      • ParameterToken

        protected ParameterToken​(String name)
        Creates a parameter token for a parameter with an explicit name and without specific modifiers.
        Parameters:
        name - The name of the parameter.
      • ParameterToken

        protected ParameterToken​(String name,
                                 Integer modifiers)
        Creates a parameter token for a parameter with an explicit name and with specific modifiers.
        Parameters:
        name - The name of the parameter.
        modifiers - The modifiers of the parameter.
    • Method Detail

      • getName

        protected String getName()
        Returns the name of the parameter or null if there is no such name.
        Returns:
        The name of the parameter or null if there is no such name.
      • getModifiers

        protected Integer getModifiers()
        Returns the modifiers of the parameter or null if no modifiers are known.
        Returns:
        The modifiers of the parameter or null if no modifiers are known.