@Entity
public class Question {

	@Id
	@GeneratedValue
	private Long id;

	private String question;

	@Column(name = "kind", length = 1024)
	@Type(type = "com.blogspot.that_java_guy.converters.type.QuestionKindType")
	private QuestionKind questionKind;

	...
}