所有类
java.lang
类 EnumConstantNotPresentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.EnumConstantNotPresentException
-
所有已实现的接口:
-
Serializable
-
public class EnumConstantNotPresentException
- extends RuntimeException
当应用程序试图通过名称和枚举类型访问那些不包含具有指定名称的常量的枚举常量时,抛出该异常。
-
从以下版本开始:
-
1.5
-
另请参见:
-
序列化表格
从类 java.lang.Throwable 继承的方法 |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
EnumConstantNotPresentException
public EnumConstantNotPresentException(Class<? extends Enum> enumType,
String constantName)
-
为指定常量构造一个 EnumConstantNotPresentException。
-
参数:
-
enumType
- 缺少的枚举常量的类型
-
constantName
- 缺少的枚举常量的名称
enumType
public Class<? extends Enum> enumType()
-
返回缺少的枚举常量的类型。
-
-
返回:
-
缺少的枚举常量的类型
constantName
public String constantName()
-
返回缺少的枚举常量的名称。
-
-
返回:
-
缺少的枚举常量名称
所有类