public static enum PurgeQueueDetails.PurgeType extends Enum<PurgeQueueDetails.PurgeType> implements BmcEnum
Type of the purge to perform: - NORMAL - purge only the normal queue - DLQ - purge only the dead letter queue - BOTH - purge both the normal queue and the dead letter queue
Modifier and Type | Method and Description |
---|---|
static PurgeQueueDetails.PurgeType |
create(String key) |
String |
getValue() |
static PurgeQueueDetails.PurgeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PurgeQueueDetails.PurgeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PurgeQueueDetails.PurgeType Normal
public static final PurgeQueueDetails.PurgeType Dlq
public static final PurgeQueueDetails.PurgeType Both
public static PurgeQueueDetails.PurgeType[] values()
for (PurgeQueueDetails.PurgeType c : PurgeQueueDetails.PurgeType.values()) System.out.println(c);
public static PurgeQueueDetails.PurgeType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static PurgeQueueDetails.PurgeType create(String key)
Copyright © 2016–2024. All rights reserved.