Package com.uic.ase.proj.xbn.string

Examples of com.uic.ase.proj.xbn.string.SOBString


    if(!s_baseDir.endsWith(File.separator))  {
      throwAX("getPackageDependencies:  s_baseDir ('" + s_baseDir + "') does not end with File.separator ('" + File.separator + "').");
    }

    //Get the index of the *second* to last file separator.
    int iIdxSlashB4Pkg = (new SOBString(s_baseDir)).lastIndexOf(File.separator, (s_baseDir.length() - File.separator.length()), true);

    if(iIdxSlashB4Pkg == -1)  {
      throwAX("getPackageDependencies:  No instance of File.separator ('" + File.separator + "') found in s_baseDir ('" + s_baseDir + "'), at least one must exist.");
    }

View Full Code Here


    @param  s_nullValue  The special string to be defined as (truly) null, when the <I>first line</I> of a value is equal to it.  May not be null or zero characters in length.  See <A HREF="#getNullValue()">getNullValue</A>.
    @param  b_1stLineWSIsEmptyString  If the first line of a variable's value is nothing but whitespace, should it be considered as empty string?  See <A HREF="#is1stLineWSEmptyString()">is1stLineWSEmptyString</A>.
   **/
  public CRCVariable(CRCVTrim crcv_trim, CRCVUnescape crcv_unescape, String s_nullValue, boolean b_1stLineWSIsEmptyString)  {

    SOBString ssNV = new SOBString(s_nullValue);
    ZCICharErr cice = new ZCICharErr();

    try  {
      if(crcv_trim.doUseESChar())  {
        cice.ciCharErr(crcv_trim.getESChar(), "crcv_trim.getESChar()", crcv_unescape, ssNV);
View Full Code Here

    <P>Get the element at the requested array index, as an SOBString.</P>

    @return  <CODE>(new <A HREF="~JD~ss#ss(s)~EJD~">SOBString</A>(<A HREF="~JD~pa#getString(i)~EJD~">getString</A>(i_dx)))</CODE>
   **/
  public SOBString getSOBString(int i_dx)  {
    return(new SOBString(getString(i_dx)));
  }
View Full Code Here

    <P>Get a list of the provided characters.</P>

    @return  The contents of SOBString after  <CODE><A HREF="~JD~append(sob,c[])~EJD~">append</A>(new <A HREF="~JD~ss#ss(s)~EJD~">SOBString</A>(""), a_char)</CODE>
   **/
  public String get(char[] a_char)  {
    SOBString ss = new SOBString(sES);
    append(ss, a_char);
    return ss.toString();
  }
View Full Code Here

    <P>Get a list of the provided ints.</P>

    @return  The contents of SOBString after  <CODE><A HREF="~JD~append(sob,i[])~EJD~">append</A>(new <A HREF="~JD~ss#ss(s)~EJD~">SOBString</A>(""), a_int)</CODE>
   **/
  public String get(int[] a_int)  {
    SOBString ss = new SOBString(sES);
    append(ss, a_int);
    return ss.toString();
  }
View Full Code Here

    <P>Get a list of the provided strings.</P>

    @return  The contents of SOBString after  <CODE><A HREF="~JD~append(sob,s[])~EJD~">append</A>(new <A HREF="~JD~ss#ss(s)~EJD~">SOBString</A>(""), a_string)</CODE>
   **/
  public String get(String[] a_string)  {
    SOBString ss = new SOBString(sES);
    append(ss, a_string);
    return ss.toString();
  }
View Full Code Here

    <P>Get a list of the provided StringBuffers.</P>

    @return  The contents of SOBString after  <CODE><A HREF="~JD~append(sob,sb[])~EJD~">append</A>(new <A HREF="~JD~ss#ss(s)~EJD~">SOBString</A>(""), a_stringBuffer)</CODE>
   **/
  public String get(StringBuffer[] a_stringBuffer)  {
    SOBString ss = new SOBString(sES);
    append(ss, a_stringBuffer);
    return ss.toString();
  }
View Full Code Here

    <P>Get a list of the provided StringOrBuffers.</P>

    @return  The contents of SOBString after  <CODE><A HREF="~JD~append(sob,sob[])~EJD~">append</A>(new <A HREF="~JD~ss#ss(s)~EJD~">SOBString</A>(""), a_strOrBfr)</CODE>
   **/
  public String get(StringOrBuffer[] a_strOrBfr)  {
    SOBString ss = new SOBString(sES);
    append(ss, a_strOrBfr);
    return ss.toString();
  }
View Full Code Here

    <P>Get a list of the provided PrimitiveArray values.</P>

    @return  The contents of SOBString after  <CODE><A HREF="~JD~append(sob,pa)~EJD~">append</A>(new <A HREF="~JD~ss#ss(s)~EJD~">SOBString</A>(""), primitive_array)</CODE>
   **/
  public String get(PrimitiveArray primitive_array)  {
    SOBString ss = new SOBString(sES);
    append(ss, primitive_array);
    return ss.toString();
  }
View Full Code Here

    @param  s_callingClsFnc  The function from which the potential error message should appear as if it is coming from.
    @return  <CODE>(new <A HREF="~JD~ss#ss(s)~EJD~">SOBString</A>(str_buffer.<A HREF="~JD~sb~EJD~#toString()">toString</A>()))</CODE>
   **/
  public final SOBString getSOBS(StringBuffer str_buffer, String s_sbDesc, String s_callingClsFnc)  {
    try  {
      return new SOBString(str_buffer.toString());
    catch(NullPointerException npx)  {
      throwAXSpoof(s_callingClsFnc + ":  " + s_sbDesc + " is null.");
    }

    //Never reached.  Required for compile.
View Full Code Here

TOP

Related Classes of com.uic.ase.proj.xbn.string.SOBString

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.