/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package org.inbio.ara.persistence.person; /** * * @author gsulca */ public enum AuthorNameEntity { PERFIL_FORMAT (new Short("0")), SHORT_FORMAT (new Short("1")), LONG_FORMAT (new Short("2")), COMPLETE_FORMAT (new Short("3")) ; private Short id; private AuthorNameEntity(Short id){ this.id = id; } /** * @return the id */ public Short getId() { return id; } /** * @param id the id to set */ public void setId(Short id) { this.id = id; } }