public enum QueryBuilderStrategyEnum extends Enum<QueryBuilderStrategyEnum>
| Enum Constant and Description |
|---|
DEFAULT |
MSSQL |
MYSQL |
POSTGRESQL |
| Modifier and Type | Method and Description |
|---|---|
String |
getStrategyName() |
static QueryBuilderStrategyEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryBuilderStrategyEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryBuilderStrategyEnum MYSQL
public static final QueryBuilderStrategyEnum POSTGRESQL
public static final QueryBuilderStrategyEnum MSSQL
public static final QueryBuilderStrategyEnum DEFAULT
public static QueryBuilderStrategyEnum[] values()
for (QueryBuilderStrategyEnum c : QueryBuilderStrategyEnum.values()) System.out.println(c);
public static QueryBuilderStrategyEnum 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 getStrategyName()
Copyright © 2006–2022 MuleSoft, Inc.. All rights reserved.