EnumConstantNotPresentException
public
class
EnumConstantNotPresentException
extends RuntimeException
| java.lang.Object | ||||
| ↳ | java.lang.Throwable | |||
| ↳ | java.lang.Exception | |||
| ↳ | java.lang.RuntimeException | |||
| ↳ | java.lang.EnumConstantNotPresentException | |||
Thrown when an application tries to access an enum constant by name and the enum type contains no constant with the specified name. This exception can be thrown by the API used to read annotations reflectively.
See also:
Summary
Public constructors | |
|---|---|
EnumConstantNotPresentException(Class<? extends Enum> enumType, String constantName)
Constructs an EnumConstantNotPresentException for the specified constant. |
|
Public methods | |
|---|---|
String
|
constantName()
Returns the name of the missing enum constant. |
Class<? extends Enum>
|
enumType()
Returns the type of the missing enum constant. |
Inherited methods | |
|---|---|
From
class
java.lang.Throwable
| |
From
class
java.lang.Object
| |
Public constructors
EnumConstantNotPresentException
EnumConstantNotPresentException (Class<? extends Enum> enumType, String constantName)
Constructs an EnumConstantNotPresentException for the specified constant.
| Parameters | |
|---|---|
enumType |
Class: the type of the missing enum constant |
constantName |
String: the name of the missing enum constant
|
Public methods
constantName
String constantName ()
Returns the name of the missing enum constant.
| Returns | |
|---|---|
String |
the name of the missing enum constant |
enumType
Class<? extends Enum> enumType ()
Returns the type of the missing enum constant.
| Returns | |
|---|---|
Class<? extends Enum> |
the type of the missing enum constant |
Annotations
Interfaces
Classes
- Boolean
- Byte
- Character
- Character.Subset
- Character.UnicodeBlock
- Class
- ClassLoader
- Compiler
- Double
- Enum
- Float
- InheritableThreadLocal
- Integer
- Long
- Math
- Number
- Object
- Package
- Process
- ProcessBuilder
- ProcessBuilder.Redirect
- Runtime
- RuntimePermission
- SecurityManager
- Short
- StackTraceElement
- StrictMath
- String
- StringBuffer
- StringBuilder
- System
- Thread
- ThreadGroup
- ThreadLocal
- Throwable
- Void
Enums
Exceptions
- ArithmeticException
- ArrayIndexOutOfBoundsException
- ArrayStoreException
- ClassCastException
- ClassNotFoundException
- CloneNotSupportedException
- EnumConstantNotPresentException
- Exception
- IllegalAccessException
- IllegalArgumentException
- IllegalMonitorStateException
- IllegalStateException
- IllegalThreadStateException
- IndexOutOfBoundsException
- InstantiationException
- InterruptedException
- NegativeArraySizeException
- NoSuchFieldException
- NoSuchMethodException
- NullPointerException
- NumberFormatException
- ReflectiveOperationException
- RuntimeException
- SecurityException
- StringIndexOutOfBoundsException
- TypeNotPresentException
- UnsupportedOperationException
Errors
- AbstractMethodError
- AssertionError
- BootstrapMethodError
- ClassCircularityError
- ClassFormatError
- Error
- ExceptionInInitializerError
- IllegalAccessError
- IncompatibleClassChangeError
- InstantiationError
- InternalError
- LinkageError
- NoClassDefFoundError
- NoSuchFieldError
- NoSuchMethodError
- OutOfMemoryError
- StackOverflowError
- ThreadDeath
- UnknownError
- UnsatisfiedLinkError
- UnsupportedClassVersionError
- VerifyError
- VirtualMachineError

