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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.dji.sample.speak.model.enums;
 
import lombok.Getter;
 
@Getter
public enum VoiceEnums {
 
    PSDK_UI_RESOURCE_UPLOAD_RESULT("psdk_ui_resource_upload_result"),
    PSDK_FLOATING_WINDOW_TEXT("psdk_floating_window_text"),
    SPEAKER_AUDIO_PLAY_START_PROGRESS("speaker_audio_play_start_progress"),
    SPEAKER_TTS_PLAY_START("speaker_tts_play_start"),
    PSDK_WIDGET_VALUE_SET("psdk_widget_value_set"),
    PSDK_INPUT_BOX_TEXT_SET("psdk_input_box_text_set"),
    SPEAKER_AUDIO_PLAY_START("speaker_audio_play_start"),
    SPEAKER_TTS_PLAY_START_PROGRESS("speaker_tts_play_start_progress"),
    SPEAKER_REPLAY("speaker_replay"),
    SPEAKER_PLAY_STOP("speaker_play_stop"),
    SPEAKER_PLAY_MODE_SET("speaker_play_mode_set"),
    SPEAKER_PLAY_VOLUME_SET("speaker_play_volume_set"),
    STORAGE_CONFIG_GET("storage_config_get");
 
 
    private String method;
 
    VoiceEnums(String method) {
        this.method = method;
    }
 
    public String getMethod() {
        return method;
    }
 
    public void setMethod(String method) {
        this.method = method;
    }
}