less than 1 minute read

@Enumerated Annotation을 사용하면 됩니다

EnumType.ORDINALPermalink

int 형으로 0, 1 … 씩 숫자로 부여됩니다. 하지만 중간에 enum 을 추가하면 에러가 발생하기 때문에 사용할 때와 안할 때를 구분해야합니다

EnumType.STRINGPermalink

enum명으로 예를 들어서 DB ready, comp 등등

package hachi.hachishop.domain.item;

public class Delivery {
    
    @Enumerated(EnumType.STRING)
    private DeliveryStatus status; //Enum READY
}