Skip to content

Instantly share code, notes, and snippets.

@thjanssen
Created January 26, 2017 13:29
Show Gist options
  • Save thjanssen/34c24a1019fc2f24dfe179849f77d148 to your computer and use it in GitHub Desktop.
Save thjanssen/34c24a1019fc2f24dfe179849f77d148 to your computer and use it in GitHub Desktop.
@Entity
public class Author implements Serializable {
@Enumerated(EnumType.ORDINAL)
private AuthorStatus status;
}
@Entity
public class Author implements Serializable {
@Enumerated(EnumType.STRING)
private AuthorStatus status;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment