javax.management
Class MBeanParameterInfo
java.lang.Object
|
+--javax.management.MBeanFeatureInfo
|
+--javax.management.MBeanParameterInfo
- All Implemented Interfaces:
- java.lang.Cloneable, java.io.Serializable
- public class MBeanParameterInfo
- extends MBeanFeatureInfo
- implements java.io.Serializable, java.lang.Cloneable
Describes an argument of an operation or constructor exposed by a MBean.
- See Also:
- Serialized Form
Constructor Summary |
MBeanParameterInfo(java.lang.String name,
java.lang.String type,
java.lang.String description)
Constructs a MBeanParameterInfo object. |
Method Summary |
java.lang.Object |
clone()
Creates and returns a copy of this object. |
java.lang.String |
getType()
Returns the type or class name of the data. |
java.lang.String |
toString()
Returns a human readable version of the MBeanParameterInfo instance |
Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
MBeanParameterInfo
public MBeanParameterInfo(java.lang.String name,
java.lang.String type,
java.lang.String description)
- Constructs a
MBeanParameterInfo
object.
- Parameters:
name
- The name of the data.type
- The type or class name of the data.description
- A human readable description of the data. Optional.
getType
public java.lang.String getType()
- Returns the type or class name of the data.
- Returns:
- The class name is returned
clone
public java.lang.Object clone()
- Creates and returns a copy of this object.
- Overrides:
clone
in class java.lang.Object
- Returns:
- A duplicate copy of this object is returned
toString
public java.lang.String toString()
- Returns a human readable version of the MBeanParameterInfo instance
- Overrides:
toString
in class MBeanFeatureInfo
- Returns:
- human readable version of the MBeanParameterInfo instance is returned
Copyright ©2003 XMOJO.org. All Rights Reserved.