public enum EventSourceType extends Enum<EventSourceType>
| Enum Constant and Description |
|---|
CLOUDWATCH_RULE_TRIGGER |
DYNAMODB_TRIGGER |
S3_TRIGGER |
SNS_TOPIC_TRIGGER |
SQS_TRIGGER |
| Modifier and Type | Method and Description |
|---|---|
abstract DependencyItem |
createDependencyItem(Annotation eventSource) |
abstract EventSourceItem |
createEventSourceItem(Annotation eventSource) |
String |
getName() |
String |
toString() |
static EventSourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventSourceType CLOUDWATCH_RULE_TRIGGER
public static final EventSourceType DYNAMODB_TRIGGER
public static final EventSourceType S3_TRIGGER
public static final EventSourceType SNS_TOPIC_TRIGGER
public static final EventSourceType SQS_TRIGGER
public static EventSourceType[] values()
for (EventSourceType c : EventSourceType.values()) System.out.println(c);
public static EventSourceType 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 String getName()
public abstract EventSourceItem createEventSourceItem(Annotation eventSource)
public abstract DependencyItem createDependencyItem(Annotation eventSource)
public String toString()
toString in class Enum<EventSourceType>Copyright © 2020. All rights reserved.