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;
|
}
|
}
|