javax.management
Class MBeanParameterInfojava.lang.Objec | +--javax.management.MBeanFeatureInfo | +--javax.management.MBeanParameterInfo
- public class
MBeanParameterInfo
- extends MBeanFeatureInfo
- implements java.io.Serializable, java.lang.Cloneable
Describes an argument of an operation exposed by an MBean.
Version:
- 1.6
Author:
- Cosimo Vampo, Massimiliano Parlione, Kenneth Barron
See Also:
- Serialized Form
Fields inherited from class javax.management.MBeanFeatureInfo
description, name
Constructor Summary
java.lang.String, java.lang.String, java.lang.String)">MBeanParameterInfo(java.lang.String name, java.lang.String type, java.lang.String description)
Constructs a MBeanParameterInfo object.MBeanFeatureInfo">
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.
Methods inherited from class javax.management.MBeanFeatureInfo
getDescription, getName
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait java.lang.String, java.lang.String, java.lang.String)">
Constructor Detail
MBeanParameterInfo
publicMBeanParameterInfo
(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
Method Detail
getType
public java.lang.StringgetType
()
- Returns the type or class name of the data.
clone
public java.lang.Objectclone
()
- Creates and returns a copy of this object.
Overrides:
- clone in class java.lang.Object