java.lang.Object
javax.management.MBeanFeatureInfo
javax.management.MBeanParameterInfo
- すべての実装されたインタフェース:
Serializable
,Cloneable
,DescriptorRead
- 直系の既知のサブクラス:
OpenMBeanParameterInfoSupport
public class MBeanParameterInfo extends MBeanFeatureInfo implements Cloneable
MBeanによって公開されるオペレーションの引数を記述します。 このクラスのインスタンスは不変です。 サブクラスは可変ですが、サブクラスの変更は推奨されていません。
- 導入されたバージョン:
- 1.5
- 関連項目:
-
フィールドのサマリー
クラスjavax.management.MBeanFeatureInfoで宣言されたフィールド
description, name
-
コンストラクタのサマリー
コンストラクタコンストラクタ説明MBeanParameterInfo
(String name, String type, String description) MBeanParameterInfo
オブジェクトを構築します。MBeanParameterInfo
(String name, String type, String description, Descriptor descriptor) MBeanParameterInfo
オブジェクトを構築します。 -
メソッドのサマリー
クラスjavax.management.MBeanFeatureInfoで宣言されたメソッド
getDescription, getDescriptor, getName
-
コンストラクタの詳細
-
MBeanParameterInfo
-
MBeanParameterInfo
public MBeanParameterInfo(String name, String type, String description, Descriptor descriptor) MBeanParameterInfo
オブジェクトを構築します。- パラメータ:
name
- データの名前type
- データの型またはクラス名。description
- 人間が読める形式のデータの説明。 オプション。descriptor
- オペレーションの記述子。 nullの場合があり、これは空の記述子と同等。- 導入されたバージョン:
- 1.6
-
-
メソッドの詳細
-
clone
-
getType
-
equals
public boolean equals(Object o) このMBeanParameterInfoを別のMBeanParameterInfoと比較します。- オーバーライド:
equals
、クラスMBeanFeatureInfo
- パラメータ:
o
- 比較対象のオブジェクト。- 戻り値:
o
がMBeanParameterInfoであり、そのMBeanFeatureInfo.getName()
、getType()
、MBeanFeatureInfo.getDescriptor()
、およびMBeanFeatureInfo.getDescription()
の各値がこのMBeanParameterInfoと同等(同一である必要はない)の場合にだけtrue。- 関連項目:
-