org.apache.bcel.verifier
public class VerificationResult extends Object
Version: $Id: VerificationResult.java 386056 2006-03-15 11:31:56Z tcurdt $
| Field Summary | |
|---|---|
| String | detailMessage The detailed message. |
| int | numeric The numeric status. |
| static int | VERIFIED_NOTYET
Constant to indicate verification has not been tried yet.
|
| static String | VERIFIED_NOTYET_MSG
This string is the canonical message for verifications that have not been tried yet.
|
| static int | VERIFIED_OK Constant to indicate verification was passed. |
| static String | VERIFIED_OK_MSG This string is the canonical message for passed verification passes. |
| static int | VERIFIED_REJECTED Constant to indicate verfication failed. |
| static VerificationResult | VR_NOTYET
Canonical VerificationResult for not-yet-tried verifications.
|
| static VerificationResult | VR_OK Canonical VerificationResult for passed verifications. |
| Constructor Summary | |
|---|---|
| VerificationResult(int status, String message) The usual constructor. | |
| Method Summary | |
|---|---|
| boolean | equals(Object o)
Returns if two VerificationResult instances are equal. |
| String | getMessage() Returns a detailed message. |
| int | getStatus() Returns one one the VERIFIED_OK, VERIFIED_NOTYET, VERIFIED_REJECTED constants. |
| int | hashCode() |
| String | toString()
Returns a String representation of the VerificationResult. |
Returns: a hash code value for the object.