Currently DataType.of only accepts uppercase names like FLOAT32. Anyone used to using python will expect float32 and similar lowercase names to work. It seems like it may have been a design decision by it's inclusion in the docs, but I don't see a reason not to add it (probably as a toUppercase on the arg rather than extra cases) and I expect almost everyone will run into this at some point.
Currently
DataType.ofonly accepts uppercase names likeFLOAT32. Anyone used to using python will expectfloat32and similar lowercase names to work. It seems like it may have been a design decision by it's inclusion in the docs, but I don't see a reason not to add it (probably as a toUppercase on the arg rather than extra cases) and I expect almost everyone will run into this at some point.