Enum SendRequest.MessageCase
- java.lang.Object
-
- java.lang.Enum<SendRequest.MessageCase>
-
- com.streamlayer.analytics.streaming.v1.SendRequest.MessageCase
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SendRequest.MessageCase>
- Enclosing class:
- SendRequest
public static enum SendRequest.MessageCase extends java.lang.Enum<SendRequest.MessageCase>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHBUTTON_INITCALLCONVERSATIONSEVENT_OPENEDGAMESHEARTBEATINTERACTIONSINVITATIONLAUNCH_BUTTONLOGINLOGOUTMESSAGE_NOT_SETNOTIFICATIONPERMISSIONWAVES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static SendRequest.MessageCaseforNumber(int value)intgetNumber()static SendRequest.MessageCasevalueOf(int value)Deprecated.static SendRequest.MessageCasevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SendRequest.MessageCase[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTH
public static final SendRequest.MessageCase AUTH
-
CALL
public static final SendRequest.MessageCase CALL
-
CONVERSATIONS
public static final SendRequest.MessageCase CONVERSATIONS
-
INTERACTIONS
public static final SendRequest.MessageCase INTERACTIONS
-
EVENT_OPENED
public static final SendRequest.MessageCase EVENT_OPENED
-
INVITATION
public static final SendRequest.MessageCase INVITATION
-
LAUNCH_BUTTON
public static final SendRequest.MessageCase LAUNCH_BUTTON
-
NOTIFICATION
public static final SendRequest.MessageCase NOTIFICATION
-
PERMISSION
public static final SendRequest.MessageCase PERMISSION
-
BUTTON_INIT
public static final SendRequest.MessageCase BUTTON_INIT
-
WAVES
public static final SendRequest.MessageCase WAVES
-
HEARTBEAT
public static final SendRequest.MessageCase HEARTBEAT
-
GAMES
public static final SendRequest.MessageCase GAMES
-
LOGIN
public static final SendRequest.MessageCase LOGIN
-
LOGOUT
public static final SendRequest.MessageCase LOGOUT
-
MESSAGE_NOT_SET
public static final SendRequest.MessageCase MESSAGE_NOT_SET
-
-
Method Detail
-
values
public static SendRequest.MessageCase[] 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 (SendRequest.MessageCase c : SendRequest.MessageCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SendRequest.MessageCase 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
-
valueOf
@Deprecated public static SendRequest.MessageCase valueOf(int value)
Deprecated.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:
value- 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
-
forNumber
public static SendRequest.MessageCase forNumber(int value)
-
getNumber
public int getNumber()
-
-