Updated code

This commit is contained in:
Piyush
2025-02-25 16:08:01 +05:30
parent 36d74f1c84
commit 10afb623a7
4 changed files with 48 additions and 22 deletions

View File

@@ -0,0 +1,25 @@
package net.gepafin.tendermanagement.enums;
import com.fasterxml.jackson.annotation.JsonValue;
public enum MatchModeEnum {
STARTSWITH("STARTSWITH"),
ENDSWITH("ENDSWITH"),
CONTAINS("CONTAINS"),
EQUALS("EQUALS"),
BEFORE("BEFORE"),
AFTER("AFTER"),
EXPIRED("EXPIRED");
private String value;
MatchModeEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
}