Package com.alivc.live.pusher
Enum AlivcLivePushConstants.Topic
- java.lang.Object
-
- java.lang.Enum<AlivcLivePushConstants.Topic>
-
- com.alivc.live.pusher.AlivcLivePushConstants.Topic
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AlivcLivePushConstants.Topic>
- Enclosing class:
- AlivcLivePushConstants
public static enum AlivcLivePushConstants.Topic extends java.lang.Enum<AlivcLivePushConstants.Topic>
data report related
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getValue()
static AlivcLivePushConstants.Topic
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AlivcLivePushConstants.Topic[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
action
public static final AlivcLivePushConstants.Topic action
-
event
public static final AlivcLivePushConstants.Topic event
-
error
public static final AlivcLivePushConstants.Topic error
-
biz
public static final AlivcLivePushConstants.Topic biz
-
-
Method Detail
-
values
public static AlivcLivePushConstants.Topic[] 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 (AlivcLivePushConstants.Topic c : AlivcLivePushConstants.Topic.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AlivcLivePushConstants.Topic 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
-
getValue
public java.lang.String getValue()
-
-