• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

wmixvideo / nfe / #6285

09 May 2016 12:13PM UTC coverage: 79.328% (-0.04%) from 79.364%
#6285

push

travis-ci

jefperito
Ajustado javadoc para HTML Strict

4651 of 5863 relevant lines covered (79.33%)

50.85 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

95.24
/src/main/java/com/fincatto/nfe310/classes/nota/NFViaTransporteInternacional.java
1
package com.fincatto.nfe310.classes.nota;
2

3
public enum NFViaTransporteInternacional {
18✔
4

5
    MARITIMA("1"),
1✔
6
    FLUVIAL("2"),
1✔
7
    LACUSTRE("3"),
1✔
8
    AEREA("4"),
1✔
9
    POSTAL("5"),
1✔
10
    FERROVIARIA("6"),
1✔
11
    RODOVIARIA("7"),
1✔
12
    CONDUTO_REDE_TRANSMISSAO("8"),
1✔
13
    MEIOS_PROPRIOS("9"),
1✔
14
    ENTRADA_SAIDA("10"),
1✔
15
    COURIER("11"),
1✔
16
    HANDCARRY("12");
1✔
17

18
    private String codigo;
19

20
    private NFViaTransporteInternacional(final String codigo) {
12✔
21
        this.codigo = codigo;
12✔
22
    }
12✔
23

24
    public String getCodigo() {
25
        return this.codigo;
155✔
26
    }
27

28
    public static NFViaTransporteInternacional valueOfCodigo(final String codigo) {
29
        for (final NFViaTransporteInternacional via : NFViaTransporteInternacional.values()) {
98✔
30
            if (via.getCodigo().equals(codigo)) {
98✔
31
                return via;
17✔
32
            }
33
        }
34
        return null;
×
35
    }
36
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc