クラスMBeanParameterInfo
java.lang.Object
javax.management.MBeanFeatureInfo
javax.management.MBeanParameterInfo
- すべての実装されたインタフェース:
Serializable, Cloneable, DescriptorRead
- 直系の既知のサブクラス:
OpenMBeanParameterInfoSupport
public class MBeanParameterInfo extends MBeanFeatureInfo implements Cloneable
MBeanによって公開されるオペレーションの引数を記述します。 このクラスのインスタンスは不変です。 サブクラスは可変ですが、サブクラスの変更は推奨されていません。
- 導入されたバージョン:
- 1.5
- 関連項目:
-
フィールドのサマリー
クラスで宣言されたフィールド MBeanFeatureInfo
description, name -
コンストラクタのサマリー
コンストラクタコンストラクタ説明MBeanParameterInfo(String name, String type, String description) MBeanParameterInfoオブジェクトを構築します。MBeanParameterInfo(String name, String type, String description, Descriptor descriptor) MBeanParameterInfoオブジェクトを構築します。 -
メソッドのサマリー
クラスで宣言されたメソッド MBeanFeatureInfo
getDescription, getDescriptor, getNameクラスオブジェクトで宣言されたメソッド
finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait修飾子と型メソッド説明protected voidfinalize()削除予定のため非推奨: このAPI要素は、将来のバージョンで削除される可能性があります。最終決定は非推奨であり、将来のリリースで削除される可能性があります。final Class<?> getClass()このObjectの実行時クラスを返します。inthashCode()このオブジェクトに対するハッシュ・コード値を返します。final voidnotify()このオブジェクトのモニターで待機中のスレッドを1つ再開します。final voidこのオブジェクトのモニターで待機中のすべてのスレッドを再開します。toString()オブジェクトの文字列表現を返します。final voidwait()現在のスレッドが目覚めるまで待機します。通常、notifiedまたはinterruptedです。final voidwait(long timeoutMillis) 現在のスレッドは、通常、notifiedまたはinterruptedであるか、一定のリアルタイムが経過するまで、目覚めるまで待機します。final voidwait(long timeoutMillis, int nanos) 現在のスレッドは、通常、notifiedまたはinterruptedであるか、一定のリアルタイムが経過するまで、目覚めるまで待機します。
-
コンストラクタの詳細
-
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。- 関連項目:
-