rain
2024-08-02 dfae9043b11e788fa4d442e4576d73571e976cea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.dji.sample.speak.model.enums;
 
import lombok.Getter;
 
@Getter
public enum FormatEnum {
    PCM("pcm");
 
    private String pcm;
 
    FormatEnum(String pcm) {
        this.pcm = pcm;
    }
 
    public String getPcm() {
        return pcm;
    }
 
    public void setPcm(String pcm) {
        this.pcm = pcm;
    }
}