モジュール java.management
パッケージ javax.management

クラスMBeanParameterInfo

java.lang.Object
javax.management.MBeanFeatureInfo
javax.management.MBeanParameterInfo
すべての実装されたインタフェース:
Serializable, Cloneable, DescriptorRead
直系の既知のサブクラス:
OpenMBeanParameterInfoSupport

public class MBeanParameterInfo
extends MBeanFeatureInfo
implements Cloneable
MBeanによって公開されるオペレーションの引数を記述します。 このクラスのインスタンスは不変です。 サブクラスは可変ですが、サブクラスの変更は推奨されていません。
導入されたバージョン:
1.5
関連項目:
直列化された形式
  • コンストラクタの詳細

    • MBeanParameterInfo

      public MBeanParameterInfo​(String name, String type, String description)
      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()によって実装されるデフォルトのネイティブ・シャロー・コピー・メカニズムの呼び出し)によって取得されます。 内部フィールドについて、これ以上詳細なコピーは作成されません。

      このクラスは不変なので、コピーは主にサブクラスにとって重要な処理となります。

      オーバーライド:
      clone、クラス: Object
      戻り値:
      このインスタンスの複製。
      関連項目:
      Cloneable
    • 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。
      関連項目:
      Object.hashCode()HashMap