Package com.alivc.live.pusher
Enum AlivcLivePushStats
- java.lang.Object
-
- java.lang.Enum<AlivcLivePushStats>
-
- com.alivc.live.pusher.AlivcLivePushStats
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AlivcLivePushStats>
public enum AlivcLivePushStats extends java.lang.Enum<AlivcLivePushStats>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AlivcLivePushStats
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AlivcLivePushStats[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IDLE
public static final AlivcLivePushStats IDLE
-
INIT
public static final AlivcLivePushStats INIT
-
PREVIEWED
public static final AlivcLivePushStats PREVIEWED
-
PREVIEING
public static final AlivcLivePushStats PREVIEING
-
PUSHED
public static final AlivcLivePushStats PUSHED
-
PUSHING
public static final AlivcLivePushStats PUSHING
-
PAUSED
public static final AlivcLivePushStats PAUSED
-
RESUMING
public static final AlivcLivePushStats RESUMING
-
RESTARTING
public static final AlivcLivePushStats RESTARTING
-
ERROR
public static final AlivcLivePushStats ERROR
-
CERTINVALID
public static final AlivcLivePushStats CERTINVALID
-
-
Method Detail
-
values
public static AlivcLivePushStats[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AlivcLivePushStats c : AlivcLivePushStats.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AlivcLivePushStats valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-