パッケージ | 説明 |
---|---|
java.beans |
JavaBeans(tm)アーキテクチャに基づいたコンポーネントであるBeanの開発に関連するクラスが含まれています。
|
java.lang |
Javaプログラミング言語の設計にあたり基本的なクラスを提供します。
|
java.lang.annotation |
Javaプログラミング言語の注釈機能のライブラリ・サポートを提供します。
|
java.lang.invoke |
java.lang.invoke パッケージには、Javaコア・クラス・ライブラリおよび仮想マシンによって直接提供される動的言語サポートが含まれています。 |
java.lang.reflect |
クラスとオブジェクトに関するリフレクト情報を取得するための、クラスとインタフェースを提供します。
|
java.rmi.server |
サーバー側のRMIをサポートするクラスとインタフェースを提供します。
|
javax.management |
Java Management Extensionsのコア・クラスを提供します。
|
javax.management.modelmbean |
ModelMBeanクラスの定義を提供します。
|
javax.management.openmbean |
公開データ型とOpen MBean記述子クラスを提供します。
|
javax.xml.ws.spi |
このパッケージは、JAX-WSのSPIを定義します。
|
修飾子と型 | メソッドと説明 |
---|---|
Method |
EventSetDescriptor.getAddListenerMethod()
イベント・リスナーの追加時に使用するメソッドを取得します。
|
Method |
EventSetDescriptor.getGetListenerMethod()
登録済みイベント・リスナーへのアクセスに使用するメソッドを取得します。
|
Method |
IndexedPropertyDescriptor.getIndexedReadMethod()
インデックス付きプロパティ値の読込みに使用するメソッドを取得します。
|
Method |
IndexedPropertyDescriptor.getIndexedWriteMethod()
インデックス付きプロパティ値の書込みに使用するメソッドを取得します。
|
Method[] |
EventSetDescriptor.getListenerMethods()
ターゲット・リスナー・インタフェースのメソッドを取得します。
|
Method |
MethodDescriptor.getMethod()
このMethodDescriptorがカプセル化するメソッドを取得します。
|
Method |
PropertyDescriptor.getReadMethod()
プロパティ値の読込みに使用するメソッドを取得します。
|
Method |
EventSetDescriptor.getRemoveListenerMethod()
イベント・リスナーの削除時に使用するメソッドを取得します。
|
Method |
PropertyDescriptor.getWriteMethod()
プロパティ値の書込みに使用するメソッドを取得します。
|
修飾子と型 | メソッドと説明 |
---|---|
Object |
EventHandler.invoke(Object proxy, Method method, Object[] arguments)
イベントから適切なプロパティ値を抽出し、この
EventHandler に関連付けられているアクションに渡します。 |
void |
IndexedPropertyDescriptor.setIndexedReadMethod(Method readMethod)
インデックス付きプロパティ値の読込みに使用するメソッドを設定します。
|
void |
IndexedPropertyDescriptor.setIndexedWriteMethod(Method writeMethod)
インデックス付きプロパティ値の書込みに使用するメソッドを設定します。
|
void |
PropertyDescriptor.setReadMethod(Method readMethod)
プロパティ値の読込みに使用するメソッドを設定します。
|
void |
PropertyDescriptor.setWriteMethod(Method writeMethod)
プロパティ値の書込みに使用するメソッドを設定します。
|
コンストラクタと説明 |
---|
EventSetDescriptor(String eventSetName, Class<?> listenerType, Method[] listenerMethods, Method addListenerMethod, Method removeListenerMethod)
java.lang.reflect.Methodおよびjava.lang.Classオブジェクトを使って、ゼロからEventSetDescriptorを作成します。
|
EventSetDescriptor(String eventSetName, Class<?> listenerType, Method[] listenerMethods, Method addListenerMethod, Method removeListenerMethod)
java.lang.reflect.Methodおよびjava.lang.Classオブジェクトを使って、ゼロからEventSetDescriptorを作成します。
|
EventSetDescriptor(String eventSetName, Class<?> listenerType, Method[] listenerMethods, Method addListenerMethod, Method removeListenerMethod, Method getListenerMethod)
このコンストラクタは、java.lang.reflect.Methodオブジェクトとjava.lang.Classオブジェクトを使って、ゼロからEventSetDescriptorを作成します。
|
EventSetDescriptor(String eventSetName, Class<?> listenerType, Method[] listenerMethods, Method addListenerMethod, Method removeListenerMethod, Method getListenerMethod)
このコンストラクタは、java.lang.reflect.Methodオブジェクトとjava.lang.Classオブジェクトを使って、ゼロからEventSetDescriptorを作成します。
|
EventSetDescriptor(String eventSetName, Class<?> listenerType, MethodDescriptor[] listenerMethodDescriptors, Method addListenerMethod, Method removeListenerMethod)
java.lang.reflect.MethodDescriptorおよびjava.lang.Classオブジェクトを使って、ゼロからEventSetDescriptorを作成します。
|
IndexedPropertyDescriptor(String propertyName, Method readMethod, Method writeMethod, Method indexedReadMethod, Method indexedWriteMethod)
このコンストラクタは、単純なプロパティ名と、プロパティの読み込みおよび書込み用のMethodオブジェクトを引数に取ります。
|
MethodDescriptor(Method method)
Method からMethodDescriptor を構築します。 |
MethodDescriptor(Method method, ParameterDescriptor[] parameterDescriptors)
Method からMethodDescriptor を構築して、メソッドの各パラメータについて説明的な情報を提供します。 |
PropertyDescriptor(String propertyName, Method readMethod, Method writeMethod)
このコンストラクタは、単純なプロパティ名と、プロパティの読み込みおよび書込み用のMethodオブジェクトを引数に取ります。
|
修飾子と型 | メソッドと説明 |
---|---|
Method |
Class.getDeclaredMethod(String name, Class<?>... parameterTypes)
この
Class オブジェクトが表すクラスまたはインタフェースの、指定された宣言されたメソッドをリフレクトするMethod オブジェクトを返します。 |
Method[] |
Class.getDeclaredMethods()
この
Class オブジェクトによって表されるクラスまたはインタフェースのすべての宣言されたメソッドをリフレクトするMethod オブジェクトが格納された配列を返します。これには、public、protected、デフォルト(package)アクセスおよびprivateメソッドが含まれますが、継承されたメソッドは除外されます。 |
Method |
Class.getEnclosingMethod()
この
Class オブジェクトが、メソッド内のローカル・クラスまたは匿名クラスを表す場合は、基本となるクラスを直接囲むメソッドを表すMethod オブジェクトを返します。 |
Method |
Class.getMethod(String name, Class<?>... parameterTypes)
この
Class オブジェクトが表すクラスまたはインタフェースの、指定されたpublicメンバー・メソッドをリフレクトするMethod オブジェクトを返します。 |
Method[] |
Class.getMethods()
この
Class オブジェクトによって表されるクラスまたはインタフェースのすべてのpublicメソッドをリフレクトするMethod オブジェクトを格納している配列を返します。これには、クラスまたはインタフェースで宣言されたもの、およびスーパー・クラスやスーパー・インタフェースから継承されたものも含まれます。 |
修飾子と型 | メソッドと説明 |
---|---|
Method |
AnnotationTypeMismatchException.element()
不正な型の要素に対応するMethodオブジェクトを返します。
|
コンストラクタと説明 |
---|
AnnotationTypeMismatchException(Method element, String foundType)
指定された注釈型要素と見つかったデータ型についてAnnotationTypeMismatchExceptionを構築します。
|
修飾子と型 | メソッドと説明 |
---|---|
MethodHandle |
MethodHandles.Lookup.unreflect(Method m)
ルックアップ・クラスがアクセス権を持つ場合に、mへの直接メソッド・ハンドルを作成します。
|
MethodHandle |
MethodHandles.Lookup.unreflectSpecial(Method m, Class<?> specialCaller)
リフレクトされたメソッドのメソッド・ハンドルを生成します。
|
修飾子と型 | メソッドと説明 |
---|---|
Object |
InvocationHandler.invoke(Object proxy, Method method, Object[] args)
プロキシ・インスタンスでメソッド呼出しを処理し、その結果を返します。
|
修飾子と型 | メソッドと説明 |
---|---|
Object |
RemoteObjectInvocationHandler.invoke(Object proxy, Method method, Object[] args)
このオブジェクトをカプセル化しているプロキシ・インスタンス
proxy 上で発行されたメソッド呼出しを処理し、その結果を返します。 |
Object |
RemoteRef.invoke(Remote obj, Method method, Object[] params, long opnum)
メソッドを呼び出します。
|
修飾子と型 | メソッドと説明 |
---|---|
Object |
MBeanServerInvocationHandler.invoke(Object proxy, Method method, Object[] args) |
コンストラクタと説明 |
---|
MBeanAttributeInfo(String name, String description, Method getter, Method setter)
このコンストラクタは、単純な属性の名前と、属性を読み込みおよび書き込むためのMethodオブジェクトを引数に取ります。
|
MBeanOperationInfo(String description, Method method)
MBeanOperationInfo オブジェクトを構築します。 |
コンストラクタと説明 |
---|
ModelMBeanAttributeInfo(String name, String description, Method getter, Method setter)
デフォルトの記述子でModelMBeanAttributeInfoオブジェクトを構築します。
|
ModelMBeanAttributeInfo(String name, String description, Method getter, Method setter, Descriptor descriptor)
ModelMBeanAttributeInfoオブジェクトを構築します。
|
ModelMBeanOperationInfo(String description, Method operationMethod)
デフォルトの記述子でModelMBeanOperationInfoオブジェクトを構築します。
|
ModelMBeanOperationInfo(String description, Method operationMethod, Descriptor descriptor)
ModelMBeanOperationInfoオブジェクトを構築します。
|
修飾子と型 | メソッドと説明 |
---|---|
Object |
CompositeDataInvocationHandler.invoke(Object proxy, Method method, Object[] args) |
修飾子と型 | メソッドと説明 |
---|---|
abstract Object |
Invoker.invoke(Method m, Object... args)
JAX-WSランタイムはこのメソッドを呼び出すことで、端点インスタンスで実際のWebサービス呼出しを行います。
|
バグまたは機能を送信
詳細なAPIリファレンスおよび開発者ドキュメントについては、Java SEのドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright© 1993, 2014, Oracle and/or its affiliates. All rights reserved.