public class ExprMessageBundle extends CheckedListResourceBundle
| Modifier and Type | Field and Description | 
|---|---|
| static java.lang.String | EXC_CANNOT_CONVERT_DATAJBO-36006: JIEvaluationError | 
| static java.lang.String | EXC_INVALID_BINARY_OPS_FOR_STRINGSJBO-36007: JIEvaluationError | 
| static java.lang.String | EXC_INVALID_METHOD_CALLJBO-36002: JISyntaxError | 
| static java.lang.String | EXC_MISMATCHING_BRACKETSJBO-36004: JISyntaxError | 
| static java.lang.String | EXC_MISMATCHING_PARENTHESESJBO-36001: JISyntaxError | 
| static java.lang.String | EXC_NO_AND_FOR_BETWEENJBO-36008: JISyntaxError | 
| static java.lang.String | EXC_NO_TOKEN_FOUNDJBO-36003: JISyntaxError | 
| static java.lang.String | EXC_UNEXPECTED_TOKEN_FOUNDJBO-36000: JISyntaxError | 
| static java.lang.String | EXC_VAR_NOT_FOUNDJBO-36005: JIEvaluationError | 
| static java.lang.String | MSG_TOKEN_LOCATION | 
| Constructor and Description | 
|---|
| ExprMessageBundle() | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.Object[][] | getContents()Gets the key-value association table. | 
public static final java.lang.String MSG_TOKEN_LOCATION
public static final java.lang.String EXC_UNEXPECTED_TOKEN_FOUND
Cause: Unexpected token found.
Action: Found an unexpected expression token. Make sure that the words are spelled correctly and that the expression makes sense.
public static final java.lang.String EXC_MISMATCHING_PARENTHESES
Cause: Mismatching parentheses.
Action: Examine the expression and ensure that open parentheses match up with closing parentheses.
public static final java.lang.String EXC_INVALID_METHOD_CALL
Cause: Invalid method call. After a method parameter, "," or ")" is expected, but neither was found.
Action: Examine the expression and correct method invocation.
public static final java.lang.String EXC_NO_TOKEN_FOUND
Cause: Expecting a token. The expression string was terminated unexpectedly.
Action: Examine the expression and ensure that the expression does not end unexpectedly.
public static final java.lang.String EXC_MISMATCHING_BRACKETS
Cause: Mismatching square brackets.
Action: Examine the expression and ensure that open square brackets (for array index) match up with closing brackets.
public static final java.lang.String EXC_VAR_NOT_FOUND
Cause: Variable not found.
Action: Examine the expression and ensure that the variable name is correct.
public static final java.lang.String EXC_CANNOT_CONVERT_DATA
Cause: Cannot convert data.
Action: Cannot convert data from one class to another. Examine the expression and ensure that the data assignment does not cause incompatible conversion of data.
public static final java.lang.String EXC_INVALID_BINARY_OPS_FOR_STRINGS
Cause: An attempt was made to invoke an invalid binary operation on two strings.
Action: Examine the operation ID and correct the expression so that the invalid binary operation is not attempted on strings. The expression runtime only recognizes addition as a valid binary operation between two strings.
public static final java.lang.String EXC_NO_AND_FOR_BETWEEN
Cause: A BETWEEN operator found but no AND for the two comparison expressions.
Action: Take a look at the expression string. The correct syntax for BETWEEN is "testVal BETWEEN value1 AND value2". The expression parser could not find the AND keyword. Correct the expression.
public java.lang.Object[][] getContents()
getContents in class CheckedListResourceBundle