PlaybackStatus
Describes the current playback status.
Inherited Methods
From class
java.lang.Enum
final
Object
|
clone()
|
final
int
|
|
int
|
|
final
Optional<EnumDesc<PlaybackStatus>>
|
describeConstable()
|
final
boolean
|
|
final
void
|
finalize()
|
final
Class<PlaybackStatus>
|
getDeclaringClass()
|
final
int
|
hashCode()
|
final
String
|
name()
|
final
int
|
ordinal()
|
String
|
toString()
|
static
<T extends Enum<T>>
T
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
From interface
java.lang.constant.Constable
abstract
Optional<? extends ConstantDesc>
|
describeConstable()
|
From interface
java.lang.Comparable
Enum Values
public
static
final
PlaybackStatus
FINISHED
FINISHED
public static final PlaybackStatus FINISHED
Playback has finished successfully.
public
static
final
PlaybackStatus
IO_ERROR
IO_ERROR
public static final PlaybackStatus IO_ERROR
Playback has stopped due to an error.
public
static
final
PlaybackStatus
NONE
NONE
public static final PlaybackStatus NONE
The session is not playing back an MP4 dataset file.
public
static
final
PlaybackStatus
OK
OK
public static final PlaybackStatus OK
Playback is in process without issues.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-31 UTC.
[null,null,["Last updated 2024-10-31 UTC."],[[["`PlaybackStatus` is an enum in ARCore that describes the current playback status of an MP4 dataset file."],["It includes four possible states: `NONE`, `OK`, `FINISHED`, and `IO_ERROR`."],["`NONE` indicates the session is not playing back a dataset, `OK` signifies ongoing playback without issues, `FINISHED` means playback completed successfully, and `IO_ERROR` denotes playback stopped due to an error."],["`PlaybackStatus` inherits methods from `java.lang.Enum`, `java.lang.Object`, `java.lang.constant.Constable`, and `java.lang.Comparable`."]]],["`PlaybackStatus` is an enum describing the state of playback, with inherited methods from `Enum`, `Object`, `Constable`, and `Comparable`. Key actions involve comparing, describing, and getting information about the playback status. It includes four possible enum values: `FINISHED` (successful completion), `IO_ERROR` (error-stopped), `NONE` (not playing), and `OK` (playing without issues). These values represent the different states of an MP4 dataset file's playback.\n"]]