本文整理汇总了Java中groovy.lang.Tuple类的典型用法代码示例。如果您正苦于以下问题:Java Tuple类的具体用法?Java Tuple怎么用?Java Tuple使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Tuple类属于groovy.lang包,在下文中一共展示了Tuple类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: adaptForNamedParams
import groovy.lang.Tuple; //导入依赖的package包/类
private static String adaptForNamedParams(String sql, List<Tuple> indexPropList) {
StringBuilder newSql = new StringBuilder();
int txtIndex = 0;
Matcher matcher = NAMED_QUERY_PATTERN.matcher(sql);
while (matcher.find()) {
newSql.append(sql.substring(txtIndex, matcher.start())).append('?');
String indexStr = matcher.group(1);
if (indexStr == null) indexStr = matcher.group(3);
int index = (indexStr == null || indexStr.length() == 0 || ":".equals(indexStr)) ? 0 : Integer.parseInt(indexStr) - 1;
String prop = matcher.group(2);
if (prop == null) prop = matcher.group(4);
indexPropList.add(new Tuple(new Object[]{index, prop == null || prop.length() == 0 ? "<this>" : prop}));
txtIndex = matcher.end();
}
newSql.append(sql.substring(txtIndex)); // append ending SQL after last param.
return newSql.toString();
}
开发者ID:apache,项目名称:groovy,代码行数:19,代码来源:ExtractIndexAndSql.java
示例2: maybeMakeImmutable
import groovy.lang.Tuple; //导入依赖的package包/类
@Override
public Tuple maybeMakeImmutable(final String propertyPath, Object propertyValue) {
if (!isImmutableProperty(propertyPath)) {
getLogger().debug("Mutable property '{}'", propertyPath);
return null;
}
if (semiMutablePropertyPaths.contains(propertyPath)) {
getLogger().debug("Semi-mutable property '{}'", propertyPath);
return new Tuple(new Object[]{makeSemiMutable(propertyValue)});
}
getLogger().debug("Immutable property '{}'", propertyPath);
return new Tuple(new Object[]{makeImmutable(propertyValue)});
}
开发者ID:cslee00,项目名称:cfn-core,代码行数:16,代码来源:ConfigurableImmutabilityStrategy.java
示例3: checkForNamedParams
import groovy.lang.Tuple; //导入依赖的package包/类
public SqlWithParams checkForNamedParams(String sql, List<Object> params) {
SqlWithParams preCheck = buildSqlWithIndexedProps(sql);
if (preCheck == null) {
return new SqlWithParams(sql, params);
}
List<Tuple> indexPropList = new ArrayList<Tuple>();
for (Object next : preCheck.getParams()) {
indexPropList.add((Tuple) next);
}
return new SqlWithParams(preCheck.getSql(), getUpdatedParams(params, indexPropList));
}
开发者ID:apache,项目名称:groovy,代码行数:13,代码来源:Sql.java
示例4: buildSqlWithIndexedProps
import groovy.lang.Tuple; //导入依赖的package包/类
/**
* Hook to allow derived classes to override behavior associated with the
* parsing and indexing of parameters from a given sql statement.
*
* @param sql the sql statement to process
* @return a {@link SqlWithParams} instance containing the parsed sql
* and parameters containing the indexed location and property
* name of parameters or {@code null} if no parsing of
* the sql was performed.
*/
protected SqlWithParams buildSqlWithIndexedProps(String sql) {
// look for quick exit
if (!enableNamedQueries || !ExtractIndexAndSql.hasNamedParameters(sql)) {
return null;
}
String newSql;
List<Tuple> propList;
if (cacheNamedQueries && namedParamSqlCache.containsKey(sql)) {
newSql = namedParamSqlCache.get(sql);
propList = namedParamIndexPropCache.get(sql);
} else {
ExtractIndexAndSql extractIndexAndSql = ExtractIndexAndSql.from(sql);
newSql = extractIndexAndSql.getNewSql();
propList = extractIndexAndSql.getIndexPropList();
namedParamSqlCache.put(sql, newSql);
namedParamIndexPropCache.put(sql, propList);
}
if (sql.equals(newSql)) {
return null;
}
List<Object> indexPropList = new ArrayList<Object>(propList);
return new SqlWithParams(newSql, indexPropList);
}
开发者ID:apache,项目名称:groovy,代码行数:37,代码来源:Sql.java
示例5: getUpdatedParams
import groovy.lang.Tuple; //导入依赖的package包/类
public List<Object> getUpdatedParams(List<Object> params, List<Tuple> indexPropList) {
List<Object> updatedParams = new ArrayList<Object>();
for (Tuple tuple : indexPropList) {
int index = (Integer) tuple.get(0);
String prop = (String) tuple.get(1);
if (index < 0 || index >= params.size())
throw new IllegalArgumentException("Invalid index " + index + " should be in range 1.." + params.size());
try {
updatedParams.add(prop.equals("<this>") ? params.get(index) : InvokerHelper.getProperty(params.get(index), prop));
} catch(MissingPropertyException mpe) {
throw new IllegalArgumentException("Property '" + prop + "' not found for parameter " + index);
}
}
return updatedParams;
}
开发者ID:apache,项目名称:groovy,代码行数:16,代码来源:Sql.java
示例6: invoke
import groovy.lang.Tuple; //导入依赖的package包/类
private ExtractIndexAndSql invoke() {
indexPropList = new ArrayList<Tuple>();
StringBuilder sb = new StringBuilder();
StringBuilder currentChunk = new StringBuilder();
while (index < sql.length()) {
switch (sql.charAt(index)) {
case QUOTE:
sb.append(adaptForNamedParams(currentChunk.toString(), indexPropList));
currentChunk = new StringBuilder();
appendToEndOfString(sb);
break;
case '-':
if (next() == '-') {
sb.append(adaptForNamedParams(currentChunk.toString(), indexPropList));
currentChunk = new StringBuilder();
appendToEndOfLine(sb);
} else {
currentChunk.append(sql.charAt(index));
}
break;
case '/':
if (next() == '*') {
sb.append(adaptForNamedParams(currentChunk.toString(), indexPropList));
currentChunk = new StringBuilder();
appendToEndOfComment(sb);
} else {
currentChunk.append(sql.charAt(index));
}
break;
default:
currentChunk.append(sql.charAt(index));
}
index++;
}
sb.append(adaptForNamedParams(currentChunk.toString(), indexPropList));
newSql = sb.toString();
return this;
}
开发者ID:apache,项目名称:groovy,代码行数:39,代码来源:ExtractIndexAndSql.java
示例7: maybeMakeImmutable
import groovy.lang.Tuple; //导入依赖的package包/类
@Override
public Tuple maybeMakeImmutable(String propertyPath, Object propertyValue) {
return configurableImmutabilityStrategy.maybeMakeImmutable(propertyPath, propertyValue);
}
开发者ID:cslee00,项目名称:cfn-core,代码行数:5,代码来源:DefaultImmutabilityStrategy.java
示例8: getIndexPropList
import groovy.lang.Tuple; //导入依赖的package包/类
List<Tuple> getIndexPropList() {
return indexPropList;
}
开发者ID:apache,项目名称:groovy,代码行数:4,代码来源:ExtractIndexAndSql.java
示例9: BatchingPreparedStatementWrapper
import groovy.lang.Tuple; //导入依赖的package包/类
public BatchingPreparedStatementWrapper(PreparedStatement delegate, List<Tuple> indexPropList, int batchSize, Logger log, Sql sql) {
super(delegate, batchSize, log);
this.delegate = delegate;
this.indexPropList = indexPropList;
this.sql = sql;
}
开发者ID:apache,项目名称:groovy,代码行数:7,代码来源:BatchingPreparedStatementWrapper.java
示例10: createTuple
import groovy.lang.Tuple; //导入依赖的package包/类
public static Tuple createTuple(Object[] array) {
return new Tuple(array);
}
开发者ID:apache,项目名称:groovy,代码行数:4,代码来源:ScriptBytecodeAdapter.java
示例11: maybeMakeImmutable
import groovy.lang.Tuple; //导入依赖的package包/类
Tuple maybeMakeImmutable(String propertyPath, Object propertyValue);
开发者ID:cslee00,项目名称:cfn-core,代码行数:2,代码来源:ImmutabilityStrategy.java
注:本文中的groovy.lang.Tuple类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论