/**
<P>Get some information about this PadChopString.</P>
**/
public String toString() {
UtilString uStr = new UtilString();
String sPCSC = null;
if(getSpcfcCfgChop() == null) {
sPCSC = "getSpcfcCfgChop()=null";
} else {
sPCSC = uStr.getConditional("[", getSpcfcCfgChop().toString(), "]");
}
String sSpcfcCfg = null;
if(getSpcfcCfgPad() == null) {
sSpcfcCfg = "getSpcfcCfgPad()=null";
} else {
sSpcfcCfg = uStr.getConditional("[", getSpcfcCfgPad().toString(), "]");
}
return this.getClass().getName() + ": getLength()=" + getLength() + ", " + sPCSC + ", " + sSpcfcCfg + ", [" + getSpcfcCfgIfNull().toString() + "]";
}