All checks were successful
JaCoCo Coverage #### Project Overview
No changes detected, that affect the code coverage.
* Line Coverage: 61.98% (17344/27983)
* Branch Coverage: 53.07% (6720/12663)
* Lines of Code: 27983
* Cyclomatic Complexity: 11207
#### Quality Gates Summary
Output truncated.
Test / Build skipped: 11, passed: 594
Intrepid/Prometeu/Studio/pipeline/head This commit looks good
17 lines
279 B
Java
17 lines
279 B
Java
package p.studio;
|
|
|
|
public enum AppMode {
|
|
Game("Game"),
|
|
Shell("Shell"),
|
|
;
|
|
|
|
private final String reference;
|
|
|
|
AppMode(final String reference) {
|
|
this.reference = reference;
|
|
}
|
|
|
|
public String exportReferenceName() {
|
|
return reference;
|
|
}
|
|
} |