com.feilong.lib.digester3.binder.PathCallParamBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feilong Show documentation
Show all versions of feilong Show documentation
feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.
package com.feilong.lib.digester3.binder;
import com.feilong.lib.digester3.PathCallParamRule;
/**
* Builder chained when invoking {@link LinkedRuleBuilder#callParamPath()}.
*
* @since 3.0
*/
public final class PathCallParamBuilder extends AbstractBackToLinkedRuleBuilder{
private int paramIndex = 0;
PathCallParamBuilder(String keyPattern, String namespaceURI, RulesBinder mainBinder, LinkedRuleBuilder mainBuilder){
super(keyPattern, namespaceURI, mainBinder, mainBuilder);
}
/**
* Sets the zero-relative parameter number.
*
* @param paramIndex
* The zero-relative parameter number
* @return this builder instance
*/
public PathCallParamBuilder ofIndex(int paramIndex){
if (paramIndex < 0){
reportError("callParamPath().ofIndex( int )", "negative index argument not allowed");
}
this.paramIndex = paramIndex;
return this;
}
/**
* {@inheritDoc}
*/
@Override
protected PathCallParamRule createRule(){
return new PathCallParamRule(paramIndex);
}
}