public static enum SqsMessage.Client extends Enum<SqsMessage.Client>
| Enum Constant and Description |
|---|
FROM_FACTORY |
FROM_SOURCE |
| Modifier and Type | Method and Description |
|---|---|
static SqsMessage.Client |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqsMessage.Client[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqsMessage.Client FROM_SOURCE
public static final SqsMessage.Client FROM_FACTORY
public static SqsMessage.Client[] values()
for (SqsMessage.Client c : SqsMessage.Client.values()) System.out.println(c);
public static SqsMessage.Client 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 nullCopyright © 2016–2022. All rights reserved.