-
- すべてのスーパー・インタフェース:
AnnotatedElement
,AnnotatedType
public interface AnnotatedTypeVariable extends AnnotatedType
AnnotatedTypeVariable
は、それ自体が型の注釈付きの使用を表す境界を設定できる宣言を持つ型変数の、潜在的に注釈付きの使用を表します。- 導入されたバージョン:
- 1.8
-
-
メソッドのサマリー
すべてのメソッド インスタンス・メソッド 抽象メソッド 修飾子と型 メソッド 説明 AnnotatedType[]
getAnnotatedBounds()
この型変数の潜在的に注釈付きの境界を返します。AnnotatedType
getAnnotatedOwnerType()
この型がネストされた型を表す場合、この型がメンバーになっている可能性のある注釈付きの型を返します。-
インタフェース java.lang.reflect.AnnotatedElementで宣言されたメソッド
getAnnotation, getAnnotations, getAnnotationsByType, getDeclaredAnnotation, getDeclaredAnnotations, getDeclaredAnnotationsByType, isAnnotationPresent
-
インタフェース java.lang.reflect.AnnotatedTypeで宣言されたメソッド
getType
-
-
-
-
メソッドの詳細
-
getAnnotatedBounds
AnnotatedType[] getAnnotatedBounds()
この型変数の潜在的に注釈付きの境界を返します。 バインドが明示的に宣言されていない場合、バインドにはObject
の名前が付けられません。- 戻り値:
- この型変数の潜在的に注釈付きの境界
- 関連項目:
TypeVariable.getBounds()
-
getAnnotatedOwnerType
AnnotatedType getAnnotatedOwnerType()
この型がネストされた型を表す場合、この型がメンバーになっている可能性のある注釈付きの型を返します。 たとえば、この型が@TA O<T>.I<S>
の場合は、@TA O<T>
の表現を返します。AnnotatedTypeVariable
のインスタンスであるAnnotatedType
のnull
を返します。- 定義:
- インタフェース
AnnotatedType
内のgetAnnotatedOwnerType
- 戻り値:
null
- 導入されたバージョン:
- 9
-
-