Enum GroupType
- java.lang.Object
-
- java.lang.Enum<GroupType>
-
- com.streamlayer.sdkSettings.client.GroupType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GROUP_TYPE_CHATGROUP_TYPE_CHAT = 1;GROUP_TYPE_UNSETGROUP_TYPE_UNSET = 0;GROUP_TYPE_WPGROUP_TYPE_WP = 2;UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intGROUP_TYPE_CHAT_VALUEGROUP_TYPE_CHAT = 1;static intGROUP_TYPE_UNSET_VALUEGROUP_TYPE_UNSET = 0;static intGROUP_TYPE_WP_VALUEGROUP_TYPE_WP = 2;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static GroupTypeforNumber(int value)intgetNumber()static com.google.protobuf.Internal.EnumLiteMap<GroupType>internalGetValueMap()static com.google.protobuf.Internal.EnumVerifierinternalGetVerifier()static GroupTypevalueOf(int value)Deprecated.static GroupTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static GroupType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GROUP_TYPE_UNSET
public static final GroupType GROUP_TYPE_UNSET
GROUP_TYPE_UNSET = 0;
-
GROUP_TYPE_CHAT
public static final GroupType GROUP_TYPE_CHAT
GROUP_TYPE_CHAT = 1;
-
GROUP_TYPE_WP
public static final GroupType GROUP_TYPE_WP
GROUP_TYPE_WP = 2;
-
UNRECOGNIZED
public static final GroupType UNRECOGNIZED
-
-
Field Detail
-
GROUP_TYPE_UNSET_VALUE
public static final int GROUP_TYPE_UNSET_VALUE
GROUP_TYPE_UNSET = 0;- See Also:
- Constant Field Values
-
GROUP_TYPE_CHAT_VALUE
public static final int GROUP_TYPE_CHAT_VALUE
GROUP_TYPE_CHAT = 1;- See Also:
- Constant Field Values
-
GROUP_TYPE_WP_VALUE
public static final int GROUP_TYPE_WP_VALUE
GROUP_TYPE_WP = 2;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static GroupType[] 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 (GroupType c : GroupType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GroupType 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
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite
-
valueOf
@Deprecated public static GroupType 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 GroupType forNumber(int value)
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<GroupType> internalGetValueMap()
-
internalGetVerifier
public static com.google.protobuf.Internal.EnumVerifier internalGetVerifier()
-
-