API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.management.openmbean. OpenMBeanParameterInfo View Source
Author(s)
Sun Microsystems, Inc.
Since
1.5
Version
3.25 05/11/17
Serial
Hierarchy
 OpenMBeanParameterInfo
Subinterfaces
Description
public interface OpenMBeanParameterInfo
  Describes a parameter used in one or more operations or constructors of an open MBean.
See also:   
Methods
Hide/Show inherited methods
public boolean equals (Object obj)
  Compares the specified obj parameter with this OpenMBeanParameterInfo instance for equality.
public Object getDefaultValue ()
  Returns the default value for this parameter, if it has one, or null otherwise.
public String getDescription ()
  Returns a human readable description of the parameter described by this OpenMBeanParameterInfo instance.
public Set<Object> getLegalValues ()
  Returns the set of legal values for this parameter, if it has one, or null otherwise.
public Comparable<Object> getMaxValue ()
  Returns the maximal value for this parameter, if it has one, or null otherwise.
public Comparable<Object> getMinValue ()
  Returns the minimal value for this parameter, if it has one, or null otherwise.
public String getName ()
  Returns the name of the parameter described by this OpenMBeanParameterInfo instance.
public OpenType<Object> getOpenType ()
  Returns the open type of the values of the parameter described by this OpenMBeanParameterInfo instance.
public boolean hasDefaultValue ()
  Returns true if this parameter has a specified default value, or false otherwise.
public int hashCode ()
  Returns the hash code value for this OpenMBeanParameterInfo instance.
public boolean hasLegalValues ()
  Returns true if this parameter has a specified set of legal values, or false otherwise.
public boolean hasMaxValue ()
  Returns true if this parameter has a specified maximal value, or false otherwise.
public boolean hasMinValue ()
  Returns true if this parameter has a specified minimal value, or false otherwise.
public boolean isValue (Object obj)
  Tests whether obj is a valid value for the parameter described by this OpenMBeanParameterInfo instance.
public String toString ()
  Returns a string representation of this OpenMBeanParameterInfo instance.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar