@Immutable public enum AudioStatus extends Enum<AudioStatus>
| Enum Constant and Description |
|---|
ADDED
Audio has been added to the group page using
(audios.add() VK API method).
|
POSTED
Audio has been posted to the group page wall
using (wall.postFromDir() VK API method).
|
UPLOADED
Audio has been uploaded (and saved using audios.save() VK API method).
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static AudioStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AudioStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudioStatus UPLOADED
public static final AudioStatus ADDED
public static final AudioStatus POSTED
public static AudioStatus[] values()
for (AudioStatus c : AudioStatus.values()) System.out.println(c);
public static AudioStatus 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 nullpublic String toString()
toString in class Enum<AudioStatus>Copyright © 2017–2018 jcabi.com. All rights reserved.