getValue method

String getValue()

Implementation

String getValue() {
  if (!isValid()) {
    throw new ResponseInvalidException();
  } else {
    return _value;
  }
}