Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


GenericDeclarationjava.lang.reflect

Java 5.0


This interface
is implemented by the classes that represent program elements that
can be made generic:
java.lang.Class as well as
Method and Constructor. It
provides access to the type variables declared by the generic type,
method, or constructor. getTypeParameters(
)
never returns null: if there are no declared type
variables, it returns a zero-length array.

public interface

GenericDeclaration {
// Public Instance Methods
TypeVariable<?>[ ]

getTypeParameters ( );
}


Implementations


Class, Constructor,
Method

Returned By


TypeVariable.getGenericDeclaration( )


    / 1191