public static enum Processor.ProcessorType extends Enum<Processor.ProcessorType>
| Enum Constant and Description |
|---|
ManyToMany
The inbound events will be processed in bulk and may return zero or more results
|
OneToMany
Each inbound event will be processed individually to return a zero or more results each
|
OneToOne
Each inbound event will be processed individually to return a single result
|
| Modifier and Type | Method and Description |
|---|---|
static Processor.ProcessorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Processor.ProcessorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Processor.ProcessorType OneToOne
public static final Processor.ProcessorType OneToMany
public static final Processor.ProcessorType ManyToMany
public static Processor.ProcessorType[] values()
for (Processor.ProcessorType c : Processor.ProcessorType.values()) System.out.println(c);
public static Processor.ProcessorType 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 © 2015–2016 Red Hat, Inc.. All rights reserved.