Thank you for a quick response. I have used hypersistence-utils as previous hibernate versions have had shortcomings for usecases that I needed, but as I understand, hibernate has evolved greatly and perhaps I can remove the need for hepersistence-utils. That would be the best scenario.
I have not been able to find instructions or documentation to help me in my search, any help is greatly appreciated.
How would I have to annotate my column to make it work with hibernate?
@Entity
public class Entity {
...
@Column(nullable = false, columnDefinition = "enum[]")
private List<Enum> values = new ArrayList<>();
}