123456789101112131415161718192021222324252627 |
- package com.backendsys.modules.crt.enums;
- /**
- * 采样方法
- */
- public enum SamplingMethodEnums {
- EULER("Euler", "DPM++2M"),
- DPM2M("DPM++2M", "dpmpp_2m")
- ;
- private final String key;
- private final String value;
- SamplingMethodEnums(String key, String value) {
- this.key = key;
- this.value = value;
- }
- public String getValue() {
- return this.value;
- }
- public String getKey() {
- return this.key;
- }
- }
|