public class

EnumConstantNotPresentException

extends RuntimeException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ java.lang.EnumConstantNotPresentException

Class Overview

Thrown when an application tries to access an enum constant by name and the enum type contains no constant with the specified name.

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.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public EnumConstantNotPresentException (Class<? extends Enum> enumType, String constantName)

Constructs an EnumConstantNotPresentException for the specified constant.

Parameters
enumType the type of the missing enum constant
constantName the name of the missing enum constant

Public Methods

public String constantName ()

Returns the name of the missing enum constant.

Returns
  • the name of the missing enum constant

public Class<? extends Enum> enumType ()

Returns the type of the missing enum constant.

Returns
  • the type of the missing enum constant