Home
last modified time | relevance | path

Searched refs:constantName (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
DEnumConstantNotPresentException.java50 private String constantName; field in EnumConstantNotPresentException
60 String constantName) { in EnumConstantNotPresentException() argument
61 super(enumType.getName() + "." + constantName); in EnumConstantNotPresentException()
63 this.constantName = constantName; in EnumConstantNotPresentException()
78 public String constantName() { return constantName; } in constantName() method in EnumConstantNotPresentException
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DEnumConstantNotPresentExceptionTest.java42 assertEquals("FOUR", e.constantName()); in test_constantName()
/libcore/luni/src/main/java/libcore/reflect/
DAnnotationMember.java301 throw new EnumConstantNotPresentException(ecnpe.enumType(), ecnpe.constantName()); in rethrowError()