Home » openjdk-7 » javax » management » [javadoc | source]
javax.management
public class: MBeanParameterInfo [javadoc | source]
java.lang.Object
   javax.management.MBeanFeatureInfo
      javax.management.MBeanParameterInfo

All Implemented Interfaces:
    Cloneable, DescriptorRead, Serializable

Direct Known Subclasses:
    OpenMBeanParameterInfoSupport

Describes an argument of an operation exposed by an MBean. Instances of this class are immutable. Subclasses may be mutable but this is not recommended.
Field Summary
static final  long serialVersionUID     
static final  MBeanParameterInfo[] NO_PARAMS     
Fields inherited from javax.management.MBeanFeatureInfo:
serialVersionUID,  name,  description
Constructor:
 public MBeanParameterInfo(String name,
    String type,
    String description) 
    Constructs an 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.
 public MBeanParameterInfo(String name,
    String type,
    String description,
    Descriptor descriptor) 
    Constructs an 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.
    descriptor - The descriptor for the operation. This may be null which is equivalent to an empty descriptor.
    since: 1.6 -
Method from javax.management.MBeanParameterInfo Summary:
clone,   equals,   getType,   hashCode,   toString
Methods from javax.management.MBeanFeatureInfo:
equals,   getDescription,   getDescriptor,   getName,   hashCode
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from javax.management.MBeanParameterInfo Detail:
 public Object clone() 

    Returns a shallow clone of this instance. The clone is obtained by simply calling super.clone(), thus calling the default native shallow cloning mechanism implemented by Object.clone(). No deeper cloning of any internal field is made.

    Since this class is immutable, cloning is chiefly of interest to subclasses.

 public boolean equals(Object o) 
    Compare this MBeanParameterInfo to another.
 public String getType() 
    Returns the type or class name of the data.
 public int hashCode() 
 public String toString()