Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. public enum EstadoVerificacion {
  2. NO_VERIFICADO( 10, "No verificado" ),
  3. VERIFICADO( 20, "Ya se verifico" ),
  4. DOCUMENTO_GENERADO( 35, "Documento generado" );
  5.  
  6. private final int id;
  7. private final String description;
  8.  
  9. private EstadoVerificacion( int id, String description ) {
  10. this.id = id;
  11. this.description = description;
  12. }
  13.  
  14. public int getId() {
  15. return id;
  16. }
  17.  
  18. public String getDescription() {
  19. return description;
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement