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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


EnumConstantNotPresentExceptionjava.lang

Java 5.0serializable unchecked


This
unchecked exception is thrown when Java code attempts to use an enum
constant that no longer exists. This can happen only if the
enumerated constant was removed from its enumerated type after the
referencing code was compiled. The methods of the exception provide
the Class of the enumerated type and the name of
the nonexistent constant.


Figure 10-19. java.lang.EnumConstantNotPresentException

public class

EnumConstantNotPresentException extends RuntimeException {
// Public Constructors
public

EnumConstantNotPresentException (Class<? extends Enum>

enumType ,
String

constantName );
// Public Instance Methods
public String

constantName ( );
public Class<? extends Enum>

enumType ( );
}



    / 1191