-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from phamvanlinh20111993/feature/improvement
Feature/improvement
- Loading branch information
Showing
38 changed files
with
1,166 additions
and
399 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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
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
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
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,18 @@ | ||
package database.in.utils; | ||
|
||
public enum InsertCodeStatus { | ||
SUCCESS("Success Inserted "), | ||
FAIL("Fail Inserted"), | ||
SUCCESS_FORCE_INSERT("Success with Batch Inserted"), | ||
FAIL_FORCE_INSERT("Fail with Batch Inserted"); | ||
|
||
private String codeValue; | ||
|
||
private InsertCodeStatus(String codeValue) { | ||
this.codeValue = codeValue; | ||
} | ||
|
||
public String getTypeValue() { | ||
return this.codeValue; | ||
} | ||
} |
Oops, something went wrong.