public enum LiveSpotStatus extends Enum<LiveSpotStatus>
| Modifier and Type | Method and Description |
|---|---|
static LiveSpotStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LiveSpotStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LiveSpotStatus O
public static final LiveSpotStatus F
public static final LiveSpotStatus U
public static LiveSpotStatus[] values()
for (LiveSpotStatus c : LiveSpotStatus.values()) System.out.println(c);
public static LiveSpotStatus 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 © 2019. All rights reserved.