명령어

abstract class Command


명령어 실행의 특정 인스턴스입니다.

요약

중첩된 유형

abstract class Command.Builder

Command의 빌더입니다.

앱 데이터 삭제 명령어의 상태입니다.

Command.ClearAppsDataStatus의 빌더입니다.

단일 앱 삭제 상태입니다.

Command.ClearAppsDataStatus.PerAppStatus의 빌더입니다.

지정된 앱이 삭제되었는지 여부 및 발생한 오류(발생한 경우)

명령어의 상태입니다.

abstract class Command.StatusCase

명령어 종류와 관련된 상태입니다.

가능한 Command.StatusCase 종류입니다.

공개 함수

java-static Command.Builder!
abstract String!

이 명령어 인스턴스에 대한 고유 ID입니다.

abstract Instant!

이 명령어가 완료된 시간입니다.

abstract Instant!

이 명령어가 생성된 시간입니다.

java-static Command!
abstract Command.State!

이 명령어의 상태입니다.

abstract Command.StatusCase!

명령어 종류와 관련된 상태입니다.

abstract Command.Builder!

공개 함수

builder

java-static fun builder(): Command.Builder!

getCommandId

abstract fun getCommandId(): String!

이 명령어 인스턴스에 대한 고유 ID입니다.

getCompleteTime

abstract fun getCompleteTime(): Instant!

이 명령어가 완료된 시간입니다.

getCreateTime

abstract fun getCreateTime(): Instant!

이 명령어가 생성된 시간입니다.

getDefaultInstance

java-static fun getDefaultInstance(): Command!

getState

abstract fun getState(): Command.State!

이 명령어의 상태입니다.

getStatus

abstract fun getStatus(): Command.StatusCase!

명령어 종류와 관련된 상태입니다.

toBuilder

abstract fun toBuilder(): Command.Builder!