public class

ConstructorArgumentEntry

extends Object
implements ParseState.Entry
java.lang.Object
   ↳ org.springframework.beans.factory.parsing.ConstructorArgumentEntry

Class Overview

ParseState entry representing a (possibly indexed) constructor argument.

Summary

Public Constructors
ConstructorArgumentEntry()
Creates a new instance of the ConstructorArgumentEntry class representing a constructor argument with a (currently) unknown index.
ConstructorArgumentEntry(int index)
Creates a new instance of the ConstructorArgumentEntry class representing a constructor argument at the supplied index.
Public Methods
String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public ConstructorArgumentEntry ()

Also: SpringBeans

Creates a new instance of the ConstructorArgumentEntry class representing a constructor argument with a (currently) unknown index.

public ConstructorArgumentEntry (int index)

Also: SpringBeans

Creates a new instance of the ConstructorArgumentEntry class representing a constructor argument at the supplied index.

Parameters
index the index of the constructor argument
Throws
IllegalArgumentException if the supplied index is less than zero

Public Methods

public String toString ()