aix
2024-07-19 c2defb8ee038ae780e2f8c57839ea3558f4f1f4b
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;
    }
}