Close

JPA - @Enumerated Examples

JPA JAVA EE 

@Entity
public class MyEntity2 {
@Id
private long myId;

@Enumerated(EnumType.STRING)
private MyEnum myEnum;
.............
}
Original Post




@Embeddable
public class PhoneNumber {
private String phoneNumber;
@Enumerated(EnumType.STRING)
private PhoneType type;
.............
}
public enum PhoneType {
House, Work, Cell
}
Original Post




See Also