Class OpenMBeanConstructorInfoSupport
- All Implemented Interfaces:
Serializable, Cloneable, DescriptorRead, OpenMBeanConstructorInfo
- Since:
- 1.5
- See Also:
-
Field Summary
Fields declared in class MBeanFeatureInfo
description, name -
Constructor Summary
ConstructorsConstructorDescriptionOpenMBeanConstructorInfoSupport(String name, String description, OpenMBeanParameterInfo[] signature) Constructs anOpenMBeanConstructorInfoSupportinstance, which describes the constructor of a class of open MBeans with the specifiedname,descriptionandsignature.OpenMBeanConstructorInfoSupport(String name, String description, OpenMBeanParameterInfo[] signature, Descriptor descriptor) Constructs anOpenMBeanConstructorInfoSupportinstance, which describes the constructor of a class of open MBeans with the specifiedname,description,signature, anddescriptor. -
Method Summary
Modifier and TypeMethodDescriptionbooleanCompares the specifiedobjparameter with thisOpenMBeanConstructorInfoSupportinstance for equality.inthashCode()Returns the hash code value for thisOpenMBeanConstructorInfoSupportinstance.toString()Returns a string representation of thisOpenMBeanConstructorInfoSupportinstance.Methods declared in class MBeanConstructorInfo
clone, getSignatureModifier and TypeMethodDescriptionclone()Returns a shallow clone of this instance.Returns the list of parameters for this constructor.Methods declared in class MBeanFeatureInfo
getDescription, getDescriptor, getNameModifier and TypeMethodDescriptionReturns the human-readable description of the feature.Returns the descriptor for the feature.getName()Returns the name of the feature.Methods declared in class Object
finalize, getClass, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.Methods declared in interface OpenMBeanConstructorInfo
getDescription, getName, getSignatureModifier and TypeMethodDescriptionReturns a human readable description of the constructor described by thisOpenMBeanConstructorInfoinstance.getName()Returns the name of the constructor described by thisOpenMBeanConstructorInfoinstance.Returns an array ofOpenMBeanParameterInfoinstances describing each parameter in the signature of the constructor described by thisOpenMBeanConstructorInfoinstance.
-
Constructor Details
-
OpenMBeanConstructorInfoSupport
public OpenMBeanConstructorInfoSupport(String name, String description, OpenMBeanParameterInfo[] signature) Constructs an
OpenMBeanConstructorInfoSupportinstance, which describes the constructor of a class of open MBeans with the specifiedname,descriptionandsignature.The
signaturearray parameter is internally copied, so that subsequent changes to the array referenced bysignaturehave no effect on this instance.- Parameters:
name- cannot be a null or empty string.description- cannot be a null or empty string.signature- can be null or empty if there are no parameters to describe.- Throws:
IllegalArgumentException- ifnameordescriptionare null or empty string.ArrayStoreException- Ifsignatureis not an array of instances of a subclass ofMBeanParameterInfo.
-
OpenMBeanConstructorInfoSupport
public OpenMBeanConstructorInfoSupport(String name, String description, OpenMBeanParameterInfo[] signature, Descriptor descriptor) Constructs an
OpenMBeanConstructorInfoSupportinstance, which describes the constructor of a class of open MBeans with the specifiedname,description,signature, anddescriptor.The
signaturearray parameter is internally copied, so that subsequent changes to the array referenced bysignaturehave no effect on this instance.- Parameters:
name- cannot be a null or empty string.description- cannot be a null or empty string.signature- can be null or empty if there are no parameters to describe.descriptor- The descriptor for the constructor. This may be null which is equivalent to an empty descriptor.- Throws:
IllegalArgumentException- ifnameordescriptionare null or empty string.ArrayStoreException- Ifsignatureis not an array of instances of a subclass ofMBeanParameterInfo.- Since:
- 1.6
-
-
Method Details
-
equals
Compares the specified
objparameter with thisOpenMBeanConstructorInfoSupportinstance for equality.Returns
trueif and only if all of the following statements are true:objis non null,objalso implements theOpenMBeanConstructorInfointerface,- their names are equal
- their signatures are equal.
equalsmethod works properly forobjparameters which are different implementations of theOpenMBeanConstructorInfointerface.- Specified by:
equalsin interfaceOpenMBeanConstructorInfo- Overrides:
equalsin classMBeanConstructorInfo- Parameters:
obj- the object to be compared for equality with thisOpenMBeanConstructorInfoSupportinstance;- Returns:
trueif the specified object is equal to thisOpenMBeanConstructorInfoSupportinstance.- See Also:
-
hashCode
public int hashCode()Returns the hash code value for this
OpenMBeanConstructorInfoSupportinstance.The hash code of an
OpenMBeanConstructorInfoSupportinstance is the sum of the hash codes of all elements of information used inequalscomparisons (ie: its name and signature, where the signature hashCode is calculated by a call tojava.util.Arrays.asList(this.getSignature).hashCode()).This ensures that
t1.equals(t2)implies thatt1.hashCode()==t2.hashCode()for any twoOpenMBeanConstructorInfoSupportinstancest1andt2, as required by the general contract of the methodObject.hashCode().However, note that another instance of a class implementing the
OpenMBeanConstructorInfointerface may be equal to thisOpenMBeanConstructorInfoSupportinstance as defined byequals(java.lang.Object), but may have a different hash code if it is calculated differently.As
OpenMBeanConstructorInfoSupportinstances are immutable, the hash code for this instance is calculated once, on the first call tohashCode, and then the same value is returned for subsequent calls.- Specified by:
hashCodein interfaceOpenMBeanConstructorInfo- Overrides:
hashCodein classObject- Returns:
- the hash code value for this
OpenMBeanConstructorInfoSupportinstance - See Also:
-
toString
Returns a string representation of this
OpenMBeanConstructorInfoSupportinstance.The string representation consists of the name of this class (ie
javax.management.openmbean.OpenMBeanConstructorInfoSupport), the name and signature of the described constructor and the string representation of its descriptor.As
OpenMBeanConstructorInfoSupportinstances are immutable, the string representation for this instance is calculated once, on the first call totoString, and then the same value is returned for subsequent calls.- Specified by:
toStringin interfaceOpenMBeanConstructorInfo- Overrides:
toStringin classObject- Returns:
- a string representation of this
OpenMBeanConstructorInfoSupportinstance
-