|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object
|
+--xbn.XBNObject
|
+--xbn.string.padchop.PCSConfig
|
+--xbn.string.padchop.ConfigPad
A PCSConfig for when you definitely want to pad.
Source code: ConfigPad.java.
| Fields inherited from class xbn.XBNObject |
bFALSE_IN_PRODUCTION, bTRUE_IN_PRODUCTION, sCNSTR, sES, sLINE_SEP |
| Constructor Summary | |
ConfigPad(int i_length)
Create a ConfigPad. |
|
ConfigPad(int i_length,
boolean b_padEndStart)
Create a ConfigPad. |
|
ConfigPad(int i_length,
boolean b_padEndStart,
char c_padCharacter)
Create a ConfigPad. |
|
ConfigPad(int i_length,
boolean b_padEndStart,
char c_padCharacter,
SpcfcCfgChop sc_chop,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad. |
|
ConfigPad(int i_length,
boolean b_padEndStart,
char c_padCharacter,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad. |
|
ConfigPad(int i_length,
boolean b_padEndStart,
SpcfcCfgChop sc_chop,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad. |
|
ConfigPad(int i_length,
boolean b_padEndStart,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad. |
|
ConfigPad(int i_length,
char c_padCharacter)
Create a ConfigPad. |
|
ConfigPad(int i_length,
char c_padCharacter,
SpcfcCfgChop sc_chop,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad. |
|
ConfigPad(int i_length,
char c_padCharacter,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad. |
|
ConfigPad(int i_length,
SpcfcCfgChop sc_chop)
Create a ConfigPad. |
|
ConfigPad(int i_length,
SpcfcCfgChop sc_chop,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad. |
|
ConfigPad(int i_length,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad. |
|
ConfigPad(int i_length,
SpcfcCfgPad sc_pad,
SpcfcCfgChop sc_chop,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad. |
|
| Methods inherited from class xbn.string.padchop.PCSConfig |
doChop, doPad, getLength, getSpcfcCfgChop, getSpcfcCfgIfNull, getSpcfcCfgPad, setLength, setSpcfcCfgChop, setSpcfcCfgIfNull, setSpcfcCfgPad, toString |
| Methods inherited from class xbn.XBNObject |
getXMsgPrefix, sop, sopl, sopl, throwAX, throwAXIfBadStr, throwAXIfNull, throwAXSpoof |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
public ConfigPad(int i_length)
Create a ConfigPad.
Equal to ConfigPad(i_length, true)
public ConfigPad(int i_length,
boolean b_padEndStart)
Create a ConfigPad.
Equal to ConfigPad(i_length, b_padEndStart, ' ')
public ConfigPad(int i_length,
char c_padCharacter)
Create a ConfigPad.
Equal to ConfigPad(i_length, true, c_padCharacter)
public ConfigPad(int i_length,
boolean b_padEndStart,
char c_padCharacter)
Create a ConfigPad.
Equal to ConfigPad(i_length, true, c_padCharacter, (new SpcfcCfgIfNull()))
public ConfigPad(int i_length,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad.
Equal to ConfigPad(i_length, true, (new SpcfcCfgChop()), sc_ifNull)
public ConfigPad(int i_length,
boolean b_padEndStart,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad.
Equal to ConfigPad(i_length, b_padEndStart, ' ', (new SpcfcCfgChop()), sc_ifNull)
public ConfigPad(int i_length,
char c_padCharacter,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad.
Equal to ConfigPad(i_length, true, c_padCharacter, (new SpcfcCfgChop()), sc_ifNull)
public ConfigPad(int i_length,
boolean b_padEndStart,
char c_padCharacter,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad.
Equal to ConfigPad(i_length, b_padEndStart, c_padCharacter, (new SpcfcCfgChop()), sc_ifNull)
public ConfigPad(int i_length,
SpcfcCfgChop sc_chop)
Create a ConfigPad.
Equal to ConfigPad(i_length, true, sc_chop, (new SpcfcCfgIfNull()))
public ConfigPad(int i_length,
SpcfcCfgChop sc_chop,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad.
Equal to ConfigPad(i_length, true, sc_chop, sc_ifNull)
public ConfigPad(int i_length,
boolean b_padEndStart,
SpcfcCfgChop sc_chop,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad.
Equal to ConfigPad(i_length, b_padEndStart, ' ', sc_chop, sc_ifNull)
public ConfigPad(int i_length,
char c_padCharacter,
SpcfcCfgChop sc_chop,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad.
Equal to ConfigPad(i_length, true, c_padCharacter, sc_chop, sc_ifNull)
public ConfigPad(int i_length,
boolean b_padEndStart,
char c_padCharacter,
SpcfcCfgChop sc_chop,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad.
Equal to ConfigPad(i_length, (new SpcfcCfgPad(b_padEndStart, c_padCharacter)), sc_chop, sc_ifNull)
public ConfigPad(int i_length,
SpcfcCfgPad sc_pad,
SpcfcCfgChop sc_chop,
SpcfcCfgIfNull sc_ifNull)
Create a ConfigPad.
Equal to PCSConfig(i_length, sc_chop, sc_pad, sc_ifNull)
Note: The only difference between this and the super constructor, is that sc_pad must be non-null.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
Copyright 1997-2003, Jeff Epstein, All Rights Reserved. See top of source code files for copyright notice.
http://sourceforge.net/projects/xbnjava