• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.tv.common.data;
2 
3 /** The recording state. */
4 // TODO(b/25023911): Use @SimpleEnum when it is supported by AutoValue
5 public enum RecordedProgramState {
6     // TODO(b/71717809): Document each state.
7     NOT_SET,
8     STARTED,
9     FINISHED,
10     PARTIAL,
11     FAILED,
12     DELETE,
13     DELETED,
14 }
15