添加IDENTIFY_NUCLIDES枚举值
This commit is contained in:
parent
ef496fdd29
commit
2b91c57686
|
@ -7,7 +7,22 @@ import lombok.Getter;
|
||||||
@Getter
|
@Getter
|
||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
public enum Condition {
|
public enum Condition {
|
||||||
FIRST_FOUND("1"), ABOVE_AVERAGE("2"), MEANWHILE("3");
|
/**
|
||||||
|
* 首次发现核素
|
||||||
|
*/
|
||||||
|
FIRST_FOUND("1"),
|
||||||
|
/**
|
||||||
|
* 核素conc超过平均值
|
||||||
|
*/
|
||||||
|
ABOVE_AVERAGE("2"),
|
||||||
|
/**
|
||||||
|
* 同时识别到多个核素
|
||||||
|
*/
|
||||||
|
MEANWHILE("3"),
|
||||||
|
/**
|
||||||
|
* 识别到某个核素
|
||||||
|
*/
|
||||||
|
IDENTIFY_NUCLIDES("4");
|
||||||
|
|
||||||
private final String value;
|
private final String value;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user