Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 778 | blopes | 1 | package br.com.swconsultoria.nfe.dom.enuns; |
| 2 | |||
| 3 | /** |
||
| 4 | * @author Samuel Oliveira - samuk.exe@hotmail.com |
||
| 5 | * Data: 02/03/2019 - 19:55 |
||
| 6 | */ |
||
| 7 | public enum AssinaturaEnum { |
||
| 8 | |||
| 9 | NFE("NFe","infNFe"), |
||
| 10 | INUTILIZACAO("infInut","infInut"), |
||
| 11 | EVENTO("evento","infEvento"); |
||
| 12 | |||
| 13 | private final String tipo; |
||
| 14 | private final String tag; |
||
| 15 | |||
| 16 | AssinaturaEnum(String tipo,String tag) { |
||
| 17 | this.tipo = tipo; |
||
| 18 | this.tag = tag; |
||
| 19 | } |
||
| 20 | |||
| 21 | public String getTipo() { |
||
| 22 | return tipo; |
||
| 23 | } |
||
| 24 | public String getTag() { |
||
| 25 | return tag; |
||
| 26 | } |
||
| 27 | } |