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