aix
2024-08-08 39ffdf5754b4ebca682bd3c925f7a500e8a1bbda
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;
    }
}