public static enum Archive.Status extends Enum<Archive.Status>
| Enum Constant and Description |
|---|
available |
failed |
started |
starting |
stopped |
| Modifier and Type | Method and Description |
|---|---|
static Archive.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Archive.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Archive.Status starting
public static final Archive.Status started
public static final Archive.Status stopped
public static final Archive.Status available
public static final Archive.Status failed
public static Archive.Status[] values()
for (Archive.Status c : Archive.Status.values()) System.out.println(c);
public static Archive.Status 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 © 2018 OpenVidu. All rights reserved.