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