我需要为 Amazon DynamoDB 映射一个用户类。User 对象的属性之一是 AccountType(枚举)。我该如何处理?下面是我尝试过的枚举和代码。
public enum AccountType {
TYPE_A,
TYPE_B
}
-
@DynamoDBAttribute(attributeName="AccountType") *<< THIS FAILS*
public AccountType getAccountType() {
return accountType;
}
任何帮助,将不胜感激。