xbn.string.padchop
Class ConfigPad

java.lang.Object
  |
  +--xbn.XBNObject
        |
        +--xbn.string.padchop.PCSConfig
              |
              +--xbn.string.padchop.ConfigPad

public class ConfigPad
extends PCSConfig

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

ConfigPad

public ConfigPad(int i_length)

Create a ConfigPad.

Equal to ConfigPad(i_length, true)


ConfigPad

public ConfigPad(int i_length,
                 boolean b_padEndStart)

Create a ConfigPad.

Equal to ConfigPad(i_length, b_padEndStart, ' ')


ConfigPad

public ConfigPad(int i_length,
                 char c_padCharacter)

Create a ConfigPad.

Equal to ConfigPad(i_length, true, c_padCharacter)


ConfigPad

public ConfigPad(int i_length,
                 boolean b_padEndStart,
                 char c_padCharacter)

Create a ConfigPad.

Equal to ConfigPad(i_length, true, c_padCharacter, (new SpcfcCfgIfNull()))


ConfigPad

public ConfigPad(int i_length,
                 SpcfcCfgIfNull sc_ifNull)

Create a ConfigPad.

Equal to ConfigPad(i_length, true, (new SpcfcCfgChop()), sc_ifNull)


ConfigPad

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)


ConfigPad

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)


ConfigPad

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)


ConfigPad

public ConfigPad(int i_length,
                 SpcfcCfgChop sc_chop)

Create a ConfigPad.

Equal to ConfigPad(i_length, true, sc_chop, (new SpcfcCfgIfNull()))


ConfigPad

public ConfigPad(int i_length,
                 SpcfcCfgChop sc_chop,
                 SpcfcCfgIfNull sc_ifNull)

Create a ConfigPad.

Equal to ConfigPad(i_length, true, sc_chop, sc_ifNull)


ConfigPad

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)


ConfigPad

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)


ConfigPad

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)


ConfigPad

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.




Copyright 1997-2003, Jeff Epstein, All Rights Reserved. See top of source code files for copyright notice.

 

http://sourceforge.net/projects/xbnjava

 

SourceForge.net Logo