public static enum StandardRequest.ResumeState extends Enum<StandardRequest.ResumeState>
| Enum Constant and Description |
|---|
PLAYBACK_PAUSE
Force media to pause
|
PLAYBACK_START
Force media to start
|
| Modifier and Type | Method and Description |
|---|---|
static StandardRequest.ResumeState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StandardRequest.ResumeState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardRequest.ResumeState PLAYBACK_START
public static final StandardRequest.ResumeState PLAYBACK_PAUSE
public static StandardRequest.ResumeState[] values()
for (StandardRequest.ResumeState c : StandardRequest.ResumeState.values()) System.out.println(c);
public static StandardRequest.ResumeState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.