public class OpenMBeanConstructorInfoSupport extends MBeanConstructorInfo implements OpenMBeanConstructorInfo
description, name
コンストラクタと説明 |
---|
OpenMBeanConstructorInfoSupport(String name, String description, OpenMBeanParameterInfo[] signature)
指定された
name 、description 、およびsignature を持つ公開MBeanのクラスのコンストラクタを記述する、OpenMBeanConstructorInfoSupport インスタンスを構築します。 |
OpenMBeanConstructorInfoSupport(String name, String description, OpenMBeanParameterInfo[] signature, Descriptor descriptor)
指定された
name 、description 、signature 、およびdescriptor で公開MBeanのクラスのコンストラクタを記述する、OpenMBeanConstructorInfoSupport インスタンスを構築します。 |
修飾子と型 | メソッドと説明 |
---|---|
boolean |
equals(Object obj)
指定された
obj パラメータとこのOpenMBeanConstructorInfoSupport インスタンスが等しいかどうかを比較します。 |
int |
hashCode()
この
OpenMBeanConstructorInfoSupport インスタンスのハッシュ・コード値を返します。 |
String |
toString()
この
OpenMBeanConstructorInfoSupport インスタンスの文字列表現を返します。 |
clone, getSignature
getDescription, getDescriptor, getName
getDescription, getName, getSignature
public OpenMBeanConstructorInfoSupport(String name, String description, OpenMBeanParameterInfo[] signature)
指定されたname
、description
、およびsignature
を持つ公開MBeanのクラスのコンストラクタを記述する、OpenMBeanConstructorInfoSupport
インスタンスを構築します。
signature
配列パラメータは、signature
を使って参照されるその後の配列の変更がこのインスタンスに影響を及ぼさないように、内部でコピーされます。
name
- nullまたは空文字列は使用できない。description
- nullまたは空文字列は使用できない。signature
- 記述するパラメータが存在しない場合はnullまたは空文字列でもよい。IllegalArgumentException
- name
またはdescription
がnullまたは空のStringの場合。ArrayStoreException
- signature
がMBeanParameterInfo
のサブクラスのインスタンスの配列でない場合。public OpenMBeanConstructorInfoSupport(String name, String description, OpenMBeanParameterInfo[] signature, Descriptor descriptor)
指定されたname
、description
、signature
、およびdescriptor
で公開MBeanのクラスのコンストラクタを記述する、OpenMBeanConstructorInfoSupport
インスタンスを構築します。
signature
配列パラメータは、signature
を使って参照されるその後の配列の変更がこのインスタンスに影響を及ぼさないように、内部でコピーされます。
name
- nullまたは空文字列は使用できない。description
- nullまたは空文字列は使用できない。signature
- 記述するパラメータが存在しない場合はnullまたは空文字列でもよい。descriptor
- コンストラクタの記述子。nullの場合があり、これは空の記述子と同等。IllegalArgumentException
- name
またはdescription
がnullまたは空のStringの場合。ArrayStoreException
- signature
がMBeanParameterInfo
のサブクラスのインスタンスの配列でない場合。public boolean equals(Object obj)
指定されたobj
パラメータとこのOpenMBeanConstructorInfoSupport
インスタンスが等しいかどうかを比較します。
次のすべての条件が満たされている場合に限り、true
を返します。
obj
がnullでないobj
がOpenMBeanConstructorInfo
インタフェースも実装しているequals
メソッドは、OpenMBeanConstructorInfo
インタフェースの異なった実装であるobj
パラメータに対して正常に機能します。equals
、インタフェース: OpenMBeanConstructorInfo
equals
、クラス: MBeanConstructorInfo
obj
- このOpenMBeanConstructorInfoSupport
インスタンスと等しいかどうかを比較するオブジェクト。OpenMBeanConstructorInfoSupport
インスタンスと等しい場合はtrue
。Object.hashCode()
、HashMap
public int hashCode()
このOpenMBeanConstructorInfoSupport
インスタンスのハッシュ・コード値を返します。
OpenMBeanConstructorInfoSupport
インスタンスのハッシュ・コードは、equals
の比較で使用されたすべての情報要素(シグニチャhashCodeはjava.util.Arrays.asList(this.getSignature).hashCode()
の呼出しによって計算される)のハッシュ・コードの合計です。
これにより、Object.hashCode()
メソッドの一般規約によって要求される、任意の2つのOpenMBeanConstructorInfoSupport
インスタンスt1
とt2
で、t1.equals(t2)
であればt1.hashCode()==t2.hashCode()
となることが保証されます。
OpenMBeanConstructorInfo
インタフェースを実装する別のクラス・インスタンスが、equals(java.lang.Object)
で定義されているように、このOpenMBeanConstructorInfoSupport
インスタンスと等しくなる場合もあります。しかし、計算方法が異なっているため、ハッシュ・コードも異なっている可能性があります。
OpenMBeanConstructorInfoSupport
インスタンスは不変で、このインスタンスのハッシュ・コードは、hashCode
の最初の呼出し時に1回だけ計算されます。その後の呼出しには、同じ値が返されます。
hashCode
、インタフェース: OpenMBeanConstructorInfo
hashCode
、クラス: MBeanConstructorInfo
OpenMBeanConstructorInfoSupport
インスタンスのハッシュ・コード値Object.equals(java.lang.Object)
, System.identityHashCode(java.lang.Object)
public String toString()
このOpenMBeanConstructorInfoSupport
インスタンスの文字列表現を返します。
この文字列表現は、このクラスの名前(javax.management.openmbean.OpenMBeanConstructorInfoSupport
)、記述されたコンストラクタの名前とシグニチャ、およびその記述子の文字列表現で構成されます。
OpenMBeanConstructorInfoSupport
インスタンスは不変で、このインスタンスの文字列表現は、toString
の最初の呼出し時に1回だけ計算されます。その後の呼出しには、同じ値が返されます。
toString
、インタフェース: OpenMBeanConstructorInfo
toString
、クラス: MBeanConstructorInfo
OpenMBeanConstructorInfoSupport
インスタンスの文字列表現 バグまたは機能を送信
詳細なAPIリファレンスおよび開発者ドキュメントについては、Java SEのドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright© 1993, 2014, Oracle and/or its affiliates. All rights reserved.