enum « jdo « Java Enterprise Q&A





1. JDO enums implementing interface    stackoverflow.com

I'm trying to create a JDO persisted class, that contains a List of enums, that implement a specific interface. Here is the code:

public interface Column {

}

public enum ColumnType1 implements Column {
  ...