/**
* Returns the code of the error.
- *
- * @return The code of the error, or <code>-1</code> if the error code
- * could not be parsed
+ *
+ * @return The code of the error, or <code>-1</code> if the error code could
+ * not be parsed
*/
public int getCode() {
return FcpUtils.safeParseInt(getField("Code"));
/**
* Returns the expected data length, if already knows.
- *
- * @return The expected data length, or <code>-1</code> if the length
- * could not be parsed
+ *
+ * @return The expected data length, or <code>-1</code> if the length could
+ * not be parsed
*/
public long getExpectedDataLength() {
return FcpUtils.safeParseLong(getField("ExpectedDataLength"));
public int[] getComplexErrorCodes() {
Map<String, String> allFields = getFields();
List<Integer> errorCodeList = new ArrayList<Integer>();
- for (Entry<String, String> field: allFields.entrySet()) {
+ for (Entry<String, String> field : allFields.entrySet()) {
String fieldKey = field.getKey();
if (fieldKey.startsWith("Errors.")) {
int nextDot = fieldKey.indexOf('.', 7);
}
int[] errorCodes = new int[errorCodeList.size()];
int errorIndex = 0;
- for (int errorCode: errorCodeList) {
+ for (int errorCode : errorCodeList) {
errorCodes[errorIndex++] = errorCode;
}
return errorCodes;