Enum ClientUpdateEventAllOfPayload.ReasonEnum
- java.lang.Object
-
- java.lang.Enum<ClientUpdateEventAllOfPayload.ReasonEnum>
-
- com.zendesk.sunshine_conversations_client.model.ClientUpdateEventAllOfPayload.ReasonEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ClientUpdateEventAllOfPayload.ReasonEnum>
- Enclosing class:
- ClientUpdateEventAllOfPayload
public static enum ClientUpdateEventAllOfPayload.ReasonEnum extends java.lang.Enum<ClientUpdateEventAllOfPayload.ReasonEnum>
The reason for which the client was updated. * `confirmed` - The client is now active and ready to use. * `blocked` - The user has unsubscribed from the conversation. * `unblocked` - A previously unsubscribed user resubscribed to the conversation. * `matched` - The channel found a user that matches the information provided.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ClientUpdateEventAllOfPayload.ReasonEnumfromValue(java.lang.String value)java.lang.StringgetValue()java.lang.StringtoString()static ClientUpdateEventAllOfPayload.ReasonEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ClientUpdateEventAllOfPayload.ReasonEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONFIRMED
public static final ClientUpdateEventAllOfPayload.ReasonEnum CONFIRMED
-
BLOCKED
public static final ClientUpdateEventAllOfPayload.ReasonEnum BLOCKED
-
UNBLOCKED
public static final ClientUpdateEventAllOfPayload.ReasonEnum UNBLOCKED
-
MATCHED
public static final ClientUpdateEventAllOfPayload.ReasonEnum MATCHED
-
-
Method Detail
-
values
public static ClientUpdateEventAllOfPayload.ReasonEnum[] 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 (ClientUpdateEventAllOfPayload.ReasonEnum c : ClientUpdateEventAllOfPayload.ReasonEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClientUpdateEventAllOfPayload.ReasonEnum 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()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<ClientUpdateEventAllOfPayload.ReasonEnum>
-
fromValue
public static ClientUpdateEventAllOfPayload.ReasonEnum fromValue(java.lang.String value)
-
-