Enum WebhookStatus
- java.lang.Object
-
- java.lang.Enum<WebhookStatus>
-
- com.streamlayer.sdkSettings.organization.webhooks.WebhookStatus
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,java.io.Serializable,java.lang.Comparable<WebhookStatus>
public enum WebhookStatus extends java.lang.Enum<WebhookStatus> implements com.google.protobuf.Internal.EnumLite
Protobuf enumstreamlayer.sdkSettings.organization.webhooks.WebhookStatus
-
-
Enum Constant Summary
Enum Constants Enum Constant Description UNRECOGNIZEDWEBHOOK_STATUS_ACTIVEactiveWEBHOOK_STATUS_INACTIVEinactiveWEBHOOK_STATUS_PAUSEDpausedWEBHOOK_STATUS_PENDINGpendingWEBHOOK_STATUS_UNSETWEBHOOK_STATUS_UNSET = 0;
-
Field Summary
Fields Modifier and Type Field Description static intWEBHOOK_STATUS_ACTIVE_VALUEactivestatic intWEBHOOK_STATUS_INACTIVE_VALUEinactivestatic intWEBHOOK_STATUS_PAUSED_VALUEpausedstatic intWEBHOOK_STATUS_PENDING_VALUEpendingstatic intWEBHOOK_STATUS_UNSET_VALUEWEBHOOK_STATUS_UNSET = 0;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static WebhookStatusforNumber(int value)intgetNumber()static com.google.protobuf.Internal.EnumLiteMap<WebhookStatus>internalGetValueMap()static com.google.protobuf.Internal.EnumVerifierinternalGetVerifier()static WebhookStatusvalueOf(int value)Deprecated.static WebhookStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WebhookStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WEBHOOK_STATUS_UNSET
public static final WebhookStatus WEBHOOK_STATUS_UNSET
WEBHOOK_STATUS_UNSET = 0;
-
WEBHOOK_STATUS_ACTIVE
public static final WebhookStatus WEBHOOK_STATUS_ACTIVE
active
WEBHOOK_STATUS_ACTIVE = 1;
-
WEBHOOK_STATUS_INACTIVE
public static final WebhookStatus WEBHOOK_STATUS_INACTIVE
inactive
WEBHOOK_STATUS_INACTIVE = 2;
-
WEBHOOK_STATUS_PENDING
public static final WebhookStatus WEBHOOK_STATUS_PENDING
pending
WEBHOOK_STATUS_PENDING = 3;
-
WEBHOOK_STATUS_PAUSED
public static final WebhookStatus WEBHOOK_STATUS_PAUSED
paused
WEBHOOK_STATUS_PAUSED = 4;
-
UNRECOGNIZED
public static final WebhookStatus UNRECOGNIZED
-
-
Field Detail
-
WEBHOOK_STATUS_UNSET_VALUE
public static final int WEBHOOK_STATUS_UNSET_VALUE
WEBHOOK_STATUS_UNSET = 0;- See Also:
- Constant Field Values
-
WEBHOOK_STATUS_ACTIVE_VALUE
public static final int WEBHOOK_STATUS_ACTIVE_VALUE
active
WEBHOOK_STATUS_ACTIVE = 1;- See Also:
- Constant Field Values
-
WEBHOOK_STATUS_INACTIVE_VALUE
public static final int WEBHOOK_STATUS_INACTIVE_VALUE
inactive
WEBHOOK_STATUS_INACTIVE = 2;- See Also:
- Constant Field Values
-
WEBHOOK_STATUS_PENDING_VALUE
public static final int WEBHOOK_STATUS_PENDING_VALUE
pending
WEBHOOK_STATUS_PENDING = 3;- See Also:
- Constant Field Values
-
WEBHOOK_STATUS_PAUSED_VALUE
public static final int WEBHOOK_STATUS_PAUSED_VALUE
paused
WEBHOOK_STATUS_PAUSED = 4;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static WebhookStatus[] 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 (WebhookStatus c : WebhookStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebhookStatus 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 WebhookStatus 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 WebhookStatus forNumber(int value)
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<WebhookStatus> internalGetValueMap()
-
internalGetVerifier
public static com.google.protobuf.Internal.EnumVerifier internalGetVerifier()
-
-