public static enum SqlProcessor.MappingType extends Enum<SqlProcessor.MappingType>
| Enum Constant and Description |
|---|
IN
Input values mapping
|
OUT
Output values mapping
|
| Modifier and Type | Method and Description |
|---|---|
static SqlProcessor.MappingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlProcessor.MappingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlProcessor.MappingType OUT
public static final SqlProcessor.MappingType IN
public static SqlProcessor.MappingType[] values()
for (SqlProcessor.MappingType c : SqlProcessor.MappingType.values()) System.out.println(c);
public static SqlProcessor.MappingType 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 © 2017. All rights reserved.