cn.sylinx.hbatis.ext.ifblock.ELSE Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-core Show documentation
Show all versions of hbatis-core Show documentation
hbatis is a simple orm framework
The newest version!
package cn.sylinx.hbatis.ext.ifblock;
import java.util.ArrayList;
import java.util.List;
public class ELSE implements FollowNode, PreNode {
private int index;
private int nextIndex;
private List ifEndBlockList = new ArrayList();
private String contentPattern;
/**
* 前置 IF ELSIF
*/
private PreNode preNode;
private END endNode;
public String getNodeName() {
return "#ELSE";
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
sb.append("ELSE NODE(");
sb.append("index:").append(index).append(",");
sb.append("nextIndex:").append(nextIndex).append(",");
sb.append("contentPattern:").append(contentPattern).append(",");
sb.append("ifEndBlockList:").append("[");
for (IfEndBlock item : ifEndBlockList) {
sb.append(item.toString()).append(",");
}
sb.append("]");
sb.append(")");
sb.append("}");
return sb.toString();
}
public END getEndNode() {
return endNode;
}
public void setEndNode(END endNode) {
this.endNode = endNode;
}
public int getNextIndex() {
return nextIndex;
}
public void setNextIndex(int nextIndex) {
this.nextIndex = nextIndex;
}
public int getIndex() {
return index;
}
public void setIndex(int index) {
this.index = index;
}
public void addIfEndBlock(IfEndBlock ifEndBlock) {
ifEndBlockList.add(ifEndBlock);
}
public String getContentPattern() {
return contentPattern;
}
public void setContentPattern(String contentPattern) {
this.contentPattern = contentPattern;
}
public PreNode getPreNode() {
return preNode;
}
public void setPreNode(PreNode preNode) {
this.preNode = preNode;
}
public List getIfEndBlockList() {
return ifEndBlockList;
}
}