Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipselink-users] How to store an ArrayList of Enum Values?

Christian,

One other note, you can also map it using a BasicCollection.

See: http://wiki.eclipse.org/Using_EclipseLink_JPA_Extensions_(ELUG)#How_to_Use_the_.40BasicCollection_Annotation

Cheers,
Guy

----- Original Message ----- From: "Guy Pelletier" <guy.pelletier@xxxxxxxxxx>
To: "EclipseLink User Discussions" <eclipselink-users@xxxxxxxxxxx>
Sent: Wednesday, August 20, 2008 11:11 AM
Subject: Re: [eclipselink-users] How to store an ArrayList of Enum Values?


Christian,

Yes this is possible. Your list will then need to be stored as a raw type as this mapping will be serialized to the database.

Cheers,
Guy

----- Original Message ----- From: "t3_chris" <c.reiter@xxxxxxx>
To: <eclipselink-users@xxxxxxxxxxx>
Sent: Tuesday, August 19, 2008 4:48 PM
Subject: [eclipselink-users] How to store an ArrayList of Enum Values?



Hi!

I'am heavily using constructs like this to store Enum Values to the
Database.

@Column(name = "customer_status", nullable = false)
@Enumerated(EnumType.STRING)
private CustomerStatus status;

Now, i am in need to store an ArrayList, or List or Collection of serveral
of those Enum Values.
Can this be done with EclipseLink 1.0 ?

If yes, how?

I need something like:

@Enumerated(EnumType.STRING)
private ArrayList<CustomerStatus> customerStati;

How should the databasetable be designed for such thing?


Best Regards,
christian
--
View this message in context: http://www.nabble.com/How-to-store-an-ArrayList-of-Enum-Values--tp19051233p19051233.html
Sent from the EclipseLink - Users mailing list archive at Nabble.com.

_______________________________________________
eclipselink-users mailing list
eclipselink-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/eclipselink-users





Back to the top