public static enum SpringJdbcEndpointBuilderFactory.JdbcOutputType extends Enum<SpringJdbcEndpointBuilderFactory.JdbcOutputType>
org.apache.camel.component.jdbc.JdbcOutputType enum.| Enum Constant and Description |
|---|
SelectList |
SelectOne |
StreamList |
| Modifier and Type | Method and Description |
|---|---|
static SpringJdbcEndpointBuilderFactory.JdbcOutputType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpringJdbcEndpointBuilderFactory.JdbcOutputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpringJdbcEndpointBuilderFactory.JdbcOutputType SelectOne
public static final SpringJdbcEndpointBuilderFactory.JdbcOutputType SelectList
public static final SpringJdbcEndpointBuilderFactory.JdbcOutputType StreamList
public static SpringJdbcEndpointBuilderFactory.JdbcOutputType[] values()
for (SpringJdbcEndpointBuilderFactory.JdbcOutputType c : SpringJdbcEndpointBuilderFactory.JdbcOutputType.values()) System.out.println(c);
public static SpringJdbcEndpointBuilderFactory.JdbcOutputType 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 nullApache Camel