-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ne prend pas en compte les lignes vides à la fin du fichier
Issue: #197805 Change-Id: I9f115c85de296935150f3a4ecda12625cad2aa79
- Loading branch information
Emilie Genton
committed
Dec 11, 2023
1 parent
0bff740
commit 21de30a
Showing
2 changed files
with
81 additions
and
26 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
remocra/src/main/java/fr/sdis83/remocra/enums/TypeErreurImportCtp.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package fr.sdis83.remocra.enums; | ||
|
||
public enum TypeErreurImportCtp { | ||
ERR_FICHIER_INNAC("ERR_FICHIER_INNAC"), | ||
ERR_MAUVAIS_EXT("ERR_MAUVAIS_EXT"), | ||
ERR_ONGLET_ABS("ERR_ONGLET_ABS"), | ||
ERR_MAUVAIS_NUM_PEI("ERR_MAUVAIS_NUM_PEI"), | ||
INFO_IGNORE("INFO_IGNORE"), | ||
ERR_DEHORS_ZC("ERR_DEHORS_ZC"), | ||
WARN_DEPLACEMENT("WARN_DEPLACEMENT"), | ||
ERR_COORD_GPS("ERR_COORD_GPS"), | ||
WARN_DATE_ANTE("WARN_DATE_ANTE"), | ||
ERR_DATE_POST("ERR_DATE_POST"), | ||
ERR_FORMAT_DATE("ERR_FORMAT_DATE"), | ||
ERR_DATE_MANQ("ERR_DATE_MANQ"), | ||
ERR_AGENT1_ABS("ERR_AGENT1_ABS"), | ||
WARN_PRESS_VIDE("WARN_PRESS_VIDE"), | ||
ERR_PRESS_ELEVEE("ERR_PRESS_ELEVEE"), | ||
ERR_FORMAT_PRESS("ERR_FORMAT_PRESS"), | ||
WARN_DEBIT_VIDE("WARN_DEBIT_VIDE"), | ||
ERR_FORMAT_DEBIT("ERR_FORMAT_DEBIT"), | ||
WARN_DEB_PRESS_VIDE("WARN_DEB_PRESS_VIDE"), | ||
INFO_TRONC_DEBIT("INFO_TRONC_DEBIT"), | ||
ERR_ANO_INCONNU("ERR_ANO_INCONNU"), | ||
ERR_VISITES_MANQUANTES("ERR_VISITES_MANQUANTES"), | ||
ERR_VISITE_EXISTANTE("ERR_VISITE_EXISTANTE"); | ||
|
||
private final String code; | ||
|
||
TypeErreurImportCtp(String code) { | ||
this.code = code; | ||
} | ||
|
||
public String getCode() { | ||
return code; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters