Hi
I think there is a small issue when Studio generates code for a String property that should be case converted to LOWER.
The generated code uses CaseConversion.LOWER where it should be ConversionType.LOWER.
No issue when trying UPPER, because it is the default value and thus not generated.
public class ExtFileDescriptor extends FileDescriptor {
private static final long serialVersionUID = -5820313476152114545L;
@CaseConversion(type = CaseConversion.LOWER) '<= should be ConversionType.LOWER
@Column(name = "TAGS", length = 150)
protected String tags;
@CaseConversion
@Column(name = "TEST")
protected String test;