| Author |
Hibernate Mapping
|
rahultiwary tiwari
Greenhorn
Joined: Aug 15, 2012
Posts: 12
|
|
hi all
I have a problem in hibernate mapping of List of Enum.
I have a enum Class as follows:
public enum IntelligenceType {
LOGICAL_MATHEMATICAL,SPATIAL,LINGUISTIC,BODILY_KINESTHITIC,MUSICAL,INTERPERSONAL, INTERAPERSONAL, NATURALISTIC, EXISTENTIAL;
}
then i have another class that uses this enum:
public class Hobby {
private String hobbyName;
private int hobbyExpertiseLevel;
private List<IntelligenceType> associatedIntelligenceTypeList;
//--------------------some other bunch of code goes down
}
i want to know that how to create the HBM file of list of enums..
Thanks in Advance.
|
 |
Martin Vajsar
Bartender
Joined: Aug 22, 2010
Posts: 2384
|
|
|
Looks like the ORM forum would be better suited for this question, so I shall move it there.
|
 |
 |
|
|
subject: Hibernate Mapping
|
|
|