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
オブジェクトを構築します。- パラメータ:
name
- データの名前type
- データの型またはクラス名。description
- 人間が読める形式のデータの説明。 オプション。
-
MBeanParameterInfo
public MBeanParameterInfo(String name, String type, String description, Descriptor descriptor) MBeanParameterInfo
オブジェクトを構築します。- パラメータ:
name
- データの名前type
- データの型またはクラス名。description
- 人間が読める形式のデータの説明。 オプション。descriptor
- オペレーションの記述子。 nullの場合があり、これは空の記述子と同等。- 導入されたバージョン:
- 1.6
-
-
メソッドの詳細
-
clone
public Object clone()このインスタンスのシャロー・コピーを返します。 このコピーは、
super.clone()
の呼び出し(Object.clone()
によって実装されるデフォルトのネイティブ・シャロー・コピー・メカニズムの呼び出し)によって取得されます。 内部フィールドについて、これ以上詳細なコピーは作成されません。このクラスは不変なので、コピーは主にサブクラスにとって重要な処理となります。
-
getType
public String getType()データの型またはクラス名を返します。- 戻り値:
- 型文字列。
-
equals
public boolean equals(Object o) このMBeanParameterInfoを別のMBeanParameterInfoと比較します。- オーバーライド:
equals
、クラスMBeanFeatureInfo
- パラメータ:
o
- 比較対象のオブジェクト。- 戻り値:
o
がMBeanParameterInfoであり、そのMBeanFeatureInfo.getName()
、getType()
、MBeanFeatureInfo.getDescriptor()
、およびMBeanFeatureInfo.getDescription()
の各値がこのMBeanParameterInfoと同等(同一である必要はない)の場合にだけtrue。- 関連項目:
-