javax.management.openmbean
public interface OpenMBeanConstructorInfo
Since: 1.5
Method Summary | |
---|---|
boolean | equals(Object obj)
Compares this attribute with the supplied object. |
String | getDescription()
Returns a description of this constructor.
|
String | getName()
Returns the name of this constructor.
|
MBeanParameterInfo[] | getSignature()
Returns the constructor's signature, in the form of
information on each parameter. |
int | hashCode()
Returns the hashcode of the constructor information as the sum of
the hashcodes of the name and signature (calculated by
java.util.Arrays.asList(signature).hashCode() ).
|
String | toString()
Returns a textual representation of this instance. |
Parameters: obj the object to compare.
Returns: true if the object is a {@link OpenMBeanParameterInfo}
instance,
name.equals(object.getName())
,
and signature.equals(object.getSignature())
.
Returns: a human-readable description.
Returns: the name of the constructor.
Returns: an array of {@link OpenMBeanParameterInfo} objects, describing the constructor parameters.
java.util.Arrays.asList(signature).hashCode()
).
Returns: the hashcode of the constructor information.
javax.management.openmbean.OpenMBeanConstructorInfo
)
along with the name and signature.
Returns: a @link{java.lang.String} instance representing the instance in textual form.