public static enum Status.State extends Enum<Status.State>
active, blocked or deleted.
active means a media object is active in the system, blocked means a media object is blocked by
the publisher, deleted means a media object has been deleted by the publisher.| Modifier and Type | Method and Description |
|---|---|
static Status.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Status.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Status.State active
public static final Status.State blocked
public static final Status.State deleted
public static Status.State[] values()
for (Status.State c : Status.State.values()) System.out.println(c);
public static Status.State 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 © 2021. All rights reserved.