- All Implemented Interfaces:
- Serializable,- Cloneable,- DescriptorRead,- OpenMBeanParameterInfo
public class OpenMBeanParameterInfoSupport extends MBeanParameterInfo implements OpenMBeanParameterInfo
- Since:
- 1.5
- See Also:
- Serialized Form
- 
Field Summary
- 
Constructor SummaryConstructors Constructor Description OpenMBeanParameterInfoSupport(String name, String description, OpenType<?> openType)Constructs anOpenMBeanParameterInfoSupportinstance, which describes the parameter used in one or more operations or constructors of a class of open MBeans, with the specifiedname,openTypeanddescription.OpenMBeanParameterInfoSupport(String name, String description, OpenType<?> openType, Descriptor descriptor)Constructs anOpenMBeanParameterInfoSupportinstance, which describes the parameter used in one or more operations or constructors of a class of open MBeans, with the specifiedname,openType,description, anddescriptor.OpenMBeanParameterInfoSupport(String name, String description, OpenType<T> openType, T defaultValue)Constructs anOpenMBeanParameterInfoSupportinstance, which describes the parameter used in one or more operations or constructors of a class of open MBeans, with the specifiedname,openType,descriptionanddefaultValue.OpenMBeanParameterInfoSupport(String name, String description, OpenType<T> openType, T defaultValue, Comparable<T> minValue, Comparable<T> maxValue)Constructs anOpenMBeanParameterInfoSupportinstance, which describes the parameter used in one or more operations or constructors of a class of open MBeans, with the specifiedname,openType,description,defaultValue,minValueandmaxValue.OpenMBeanParameterInfoSupport(String name, String description, OpenType<T> openType, T defaultValue, T[] legalValues)Constructs anOpenMBeanParameterInfoSupportinstance, which describes the parameter used in one or more operations or constructors of a class of open MBeans, with the specifiedname,openType,description,defaultValueandlegalValues.
- 
Method SummaryModifier and Type Method Description booleanequals(Object obj)Compares the specifiedobjparameter with thisOpenMBeanParameterInfoSupportinstance for equality.ObjectgetDefaultValue()Returns the default value for the parameter described by thisOpenMBeanParameterInfoSupportinstance, if specified, ornullotherwise.Set<?>getLegalValues()Returns an unmodifiable Set of legal values for the parameter described by thisOpenMBeanParameterInfoSupportinstance, if specified, ornullotherwise.Comparable<?>getMaxValue()Returns the maximal value for the parameter described by thisOpenMBeanParameterInfoSupportinstance, if specified, ornullotherwise.Comparable<?>getMinValue()Returns the minimal value for the parameter described by thisOpenMBeanParameterInfoSupportinstance, if specified, ornullotherwise.OpenType<?>getOpenType()Returns the open type for the values of the parameter described by thisOpenMBeanParameterInfoSupportinstance.booleanhasDefaultValue()Returnstrueif thisOpenMBeanParameterInfoSupportinstance specifies a non-null default value for the described parameter,falseotherwise.inthashCode()Returns the hash code value for thisOpenMBeanParameterInfoSupportinstance.booleanhasLegalValues()Returnstrueif thisOpenMBeanParameterInfoSupportinstance specifies a non-null set of legal values for the described parameter,falseotherwise.booleanhasMaxValue()Returnstrueif thisOpenMBeanParameterInfoSupportinstance specifies a non-null maximal value for the described parameter,falseotherwise.booleanhasMinValue()Returnstrueif thisOpenMBeanParameterInfoSupportinstance specifies a non-null minimal value for the described parameter,falseotherwise.booleanisValue(Object obj)Tests whetherobjis a valid value for the parameter described by thisOpenMBeanParameterInfoinstance.StringtoString()Returns a string representation of thisOpenMBeanParameterInfoSupportinstance.Methods declared in interface javax.management.openmbean.OpenMBeanParameterInfogetDescription, getName
- 
Constructor Details- 
OpenMBeanParameterInfoSupportConstructs anOpenMBeanParameterInfoSupportinstance, which describes the parameter used in one or more operations or constructors of a class of open MBeans, with the specifiedname,openTypeanddescription.- Parameters:
- name- cannot be a null or empty string.
- description- cannot be a null or empty string.
- openType- cannot be null.
- Throws:
- IllegalArgumentException- if- nameor- descriptionare null or empty string, or- openTypeis null.
 
- 
OpenMBeanParameterInfoSupportpublic OpenMBeanParameterInfoSupport(String name, String description, OpenType<?> openType, Descriptor descriptor)Constructs anOpenMBeanParameterInfoSupportinstance, which describes the parameter used in one or more operations or constructors of a class of open MBeans, with the specifiedname,openType,description, anddescriptor.The descriptorcan contain entries that will define the values returned by certain methods of this class, as explained in the package description.- Parameters:
- name- cannot be a null or empty string.
- description- cannot be a null or empty string.
- openType- cannot be null.
- descriptor- The descriptor for the parameter. This may be null which is equivalent to an empty descriptor.
- Throws:
- IllegalArgumentException- if- nameor- descriptionare null or empty string, or- openTypeis null, or the descriptor entries are invalid as described in the package description.
- Since:
- 1.6
 
- 
OpenMBeanParameterInfoSupportpublic OpenMBeanParameterInfoSupport(String name, String description, OpenType<T> openType, T defaultValue) throws OpenDataExceptionConstructs anOpenMBeanParameterInfoSupportinstance, which describes the parameter used in one or more operations or constructors of a class of open MBeans, with the specifiedname,openType,descriptionanddefaultValue.- Type Parameters:
- T- allows the compiler to check that the- defaultValue, if non-null, has the correct Java type for the given- openType.
- Parameters:
- name- cannot be a null or empty string.
- description- cannot be a null or empty string.
- openType- cannot be null.
- defaultValue- must be a valid value for the- openTypespecified for this parameter; default value not supported for- ArrayTypeand- TabularType; can be null, in which case it means that no default value is set.
- Throws:
- IllegalArgumentException- if- nameor- descriptionare null or empty string, or- openTypeis null.
- OpenDataException- if- defaultValueis not a valid value for the specified- openType, or- defaultValueis non null and- openTypeis an- ArrayTypeor a- TabularType.
 
- 
OpenMBeanParameterInfoSupportpublic OpenMBeanParameterInfoSupport(String name, String description, OpenType<T> openType, T defaultValue, T[] legalValues) throws OpenDataExceptionConstructs an OpenMBeanParameterInfoSupportinstance, which describes the parameter used in one or more operations or constructors of a class of open MBeans, with the specifiedname,openType,description,defaultValueandlegalValues.The contents of legalValuesare copied, so subsequent modifications of the array referenced bylegalValueshave no impact on thisOpenMBeanParameterInfoSupportinstance.- Type Parameters:
- T- allows the compiler to check that the- defaultValueand- legalValues, if non-null, have the correct Java type for the given- openType.
- Parameters:
- name- cannot be a null or empty string.
- description- cannot be a null or empty string.
- openType- cannot be null.
- defaultValue- must be a valid value for the- openTypespecified for this parameter; default value not supported for- ArrayTypeand- TabularType; can be null, in which case it means that no default value is set.
- legalValues- each contained value must be valid for the- openTypespecified for this parameter; legal values not supported for- ArrayTypeand- TabularType; can be null or empty.
- Throws:
- IllegalArgumentException- if- nameor- descriptionare null or empty string, or- openTypeis null.
- OpenDataException- if- defaultValueis not a valid value for the specified- openType, or one value in- legalValuesis not valid for the specified- openType, or- defaultValueis non null and- openTypeis an- ArrayTypeor a- TabularType, or- legalValuesis non null and non empty and- openTypeis an- ArrayTypeor a- TabularType, or- legalValuesis non null and non empty and- defaultValueis not contained in- legalValues.
 
- 
OpenMBeanParameterInfoSupportpublic OpenMBeanParameterInfoSupport(String name, String description, OpenType<T> openType, T defaultValue, Comparable<T> minValue, Comparable<T> maxValue) throws OpenDataExceptionConstructs anOpenMBeanParameterInfoSupportinstance, which describes the parameter used in one or more operations or constructors of a class of open MBeans, with the specifiedname,openType,description,defaultValue,minValueandmaxValue. It is possible to specify minimal and maximal values only for an open type whose values areComparable.- Type Parameters:
- T- allows the compiler to check that the- defaultValue,- minValue, and- maxValue, if non-null, have the correct Java type for the given- openType.
- Parameters:
- name- cannot be a null or empty string.
- description- cannot be a null or empty string.
- openType- cannot be null.
- defaultValue- must be a valid value for the- openTypespecified for this parameter; default value not supported for- ArrayTypeand- TabularType; can be null, in which case it means that no default value is set.
- minValue- must be valid for the- openTypespecified for this parameter; can be null, in which case it means that no minimal value is set.
- maxValue- must be valid for the- openTypespecified for this parameter; can be null, in which case it means that no maximal value is set.
- Throws:
- IllegalArgumentException- if- nameor- descriptionare null or empty string, or- openTypeis null.
- OpenDataException- if- defaultValue,- minValueor- maxValueis not a valid value for the specified- openType, or- defaultValueis non null and- openTypeis an- ArrayTypeor a- TabularType, or both- minValueand- maxValueare non-null and- minValue.compareTo(maxValue) > 0is- true, or both- defaultValueand- minValueare non-null and- minValue.compareTo(defaultValue) > 0is- true, or both- defaultValueand- maxValueare non-null and- defaultValue.compareTo(maxValue) > 0is- true.
 
 
- 
- 
Method Details- 
getOpenTypeReturns the open type for the values of the parameter described by thisOpenMBeanParameterInfoSupportinstance.- Specified by:
- getOpenTypein interface- OpenMBeanParameterInfo
- Returns:
- the open type.
 
- 
getDefaultValueReturns the default value for the parameter described by thisOpenMBeanParameterInfoSupportinstance, if specified, ornullotherwise.- Specified by:
- getDefaultValuein interface- OpenMBeanParameterInfo
- Returns:
- the default value.
 
- 
getLegalValuesReturns an unmodifiable Set of legal values for the parameter described by thisOpenMBeanParameterInfoSupportinstance, if specified, ornullotherwise.- Specified by:
- getLegalValuesin interface- OpenMBeanParameterInfo
- Returns:
- the set of legal values.
 
- 
getMinValueReturns the minimal value for the parameter described by thisOpenMBeanParameterInfoSupportinstance, if specified, ornullotherwise.- Specified by:
- getMinValuein interface- OpenMBeanParameterInfo
- Returns:
- the minimum value.
 
- 
getMaxValueReturns the maximal value for the parameter described by thisOpenMBeanParameterInfoSupportinstance, if specified, ornullotherwise.- Specified by:
- getMaxValuein interface- OpenMBeanParameterInfo
- Returns:
- the maximum value.
 
- 
hasDefaultValuepublic boolean hasDefaultValue()Returnstrueif thisOpenMBeanParameterInfoSupportinstance specifies a non-null default value for the described parameter,falseotherwise.- Specified by:
- hasDefaultValuein interface- OpenMBeanParameterInfo
- Returns:
- true if there is a default value.
 
- 
hasLegalValuespublic boolean hasLegalValues()Returnstrueif thisOpenMBeanParameterInfoSupportinstance specifies a non-null set of legal values for the described parameter,falseotherwise.- Specified by:
- hasLegalValuesin interface- OpenMBeanParameterInfo
- Returns:
- true if there is a set of legal values.
 
- 
hasMinValuepublic boolean hasMinValue()Returnstrueif thisOpenMBeanParameterInfoSupportinstance specifies a non-null minimal value for the described parameter,falseotherwise.- Specified by:
- hasMinValuein interface- OpenMBeanParameterInfo
- Returns:
- true if there is a minimum value.
 
- 
hasMaxValuepublic boolean hasMaxValue()Returnstrueif thisOpenMBeanParameterInfoSupportinstance specifies a non-null maximal value for the described parameter,falseotherwise.- Specified by:
- hasMaxValuein interface- OpenMBeanParameterInfo
- Returns:
- true if there is a maximum value.
 
- 
isValueTests whetherobjis a valid value for the parameter described by thisOpenMBeanParameterInfoinstance.- Specified by:
- isValuein interface- OpenMBeanParameterInfo
- Parameters:
- obj- the object to be tested.
- Returns:
- trueif- objis a valid value for the parameter described by this- OpenMBeanParameterInfoinstance,- falseotherwise.
 
- 
equalsCompares the specified objparameter with thisOpenMBeanParameterInfoSupportinstance for equality.Returns trueif and only if all of the following statements are true:- objis non null,
- objalso implements the- OpenMBeanParameterInfointerface,
- their names are equal
- their open types are equal
- their default, min, max and legal values are equal.
 equalsmethod works properly forobjparameters which are different implementations of theOpenMBeanParameterInfointerface.If objalso implementsDescriptorRead, then itsgetDescriptor()method must also return the same value as for this object.- Specified by:
- equalsin interface- OpenMBeanParameterInfo
- Overrides:
- equalsin class- MBeanParameterInfo
- Parameters:
- obj- the object to be compared for equality with this- OpenMBeanParameterInfoSupportinstance.
- Returns:
- trueif the specified object is equal to this- OpenMBeanParameterInfoSupportinstance.
- See Also:
- Object.hashCode(),- HashMap
 
- 
hashCodepublic int hashCode()Returns the hash code value for this OpenMBeanParameterInfoSupportinstance.The hash code of an OpenMBeanParameterInfoSupportinstance is the sum of the hash codes of all elements of information used inequalscomparisons (ie: its name, its open type, its default, min, max and legal values, and its Descriptor).This ensures that t1.equals(t2)implies thatt1.hashCode()==t2.hashCode()for any twoOpenMBeanParameterInfoSupportinstancest1andt2, as required by the general contract of the methodObject.hashCode().However, note that another instance of a class implementing the OpenMBeanParameterInfointerface may be equal to thisOpenMBeanParameterInfoSupportinstance as defined byequals(java.lang.Object), but may have a different hash code if it is calculated differently.As OpenMBeanParameterInfoSupportinstances 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 interface- OpenMBeanParameterInfo
- Overrides:
- hashCodein class- Object
- Returns:
- the hash code value for this OpenMBeanParameterInfoSupportinstance
- See Also:
- Object.equals(java.lang.Object),- System.identityHashCode(java.lang.Object)
 
- 
toStringReturns a string representation of thisOpenMBeanParameterInfoSupportinstance.The string representation consists of the name of this class (i.e. javax.management.openmbean.OpenMBeanParameterInfoSupport), the string representation of the name and open type of the described parameter, the string representation of its default, min, max and legal values and the string representation of its descriptor.As OpenMBeanParameterInfoSupportinstances 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 interface- OpenMBeanParameterInfo
- Overrides:
- toStringin class- Object
- Returns:
- a string representation of this
 OpenMBeanParameterInfoSupportinstance.
 
 
-