}
return encoding;
}
protected String encode(List<List<Number>> data, WOResponse response, WOContext context) {
GCAbstractEncoding encoding = encoding(data, response, context);
String encodedValue;
Number maxValue = maxValue(response, context);
if (maxValue != null) {
encodedValue = encoding.encode(maxValue, data);
}
else {
encodedValue = encoding.encode(normalize(response, context), data);
}
return encodedValue;
}