Package org.apache.abdera.util.io

Examples of org.apache.abdera.util.io.InvalidCharacterException


        while(r != -1 && Nameprep.B1.get(r)) {
          r = super.next();
        }
       
        if (r != -1) {
          if (PROHIBITED.get(r)) throw new InvalidCharacterException(r);
          int[] rep = Nameprep.B2(r);
          if (rep != null) {
            if (rep.length > 1) {
              this.rep = rep;
              reppos = 0;
View Full Code Here

TOP

Related Classes of org.apache.abdera.util.io.InvalidCharacterException

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.