All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scalagen.readField.scala Maven / Gradle / Ivy

The newest version!
_field.`type` match {
{{#isEnum}}
  case TType.I32 | TType.ENUM => {
{{/isEnum}}
{{^isEnum}}
  case TType.{{constType}} => {
{{/isEnum}}
    {{fieldName}} = {{#optional}}Some({{/optional}}{{readFieldValueName}}(_iprot){{#optional}}){{/optional}}
{{#required}}
    {{gotName}} = true
{{/required}}
  }
  case _actualType =>
    val _expectedType = TType.{{#isEnum}}ENUM{{/isEnum}}{{^isEnum}}{{constType}}{{/isEnum}}

    throw new TProtocolException(
      "Received wrong type for field '{{fieldName}}' (expected=%s, actual=%s).".format(
        ttypeToHuman(_expectedType),
        ttypeToHuman(_actualType)
      )
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy