Java Code Examples for com.sun.corba.se.impl.logging.ORBUtilSystemException#badCodeSetString()

The following examples show how to use com.sun.corba.se.impl.logging.ORBUtilSystemException#badCodeSetString() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CodeSetComponentInfo.java    From jdk1.8-source-analysis with Apache License 2.0 4 votes vote down vote up
/**
 * Creates a CodeSetComponent from a String which contains a comma
 * delimited list of OSF Code Set Registry numbers.  An INITIALIZE
 * exception is thrown if any of the numbers are not known by our
 * registry.  Used by corba.ORB init.
 *
 * The first number in the list is taken as the native code set,
 * and the rest is the conversion code set list.
 *
 * The numbers can either be decimal or hex.
 */
public static CodeSetComponent createFromString(String str) {
    ORBUtilSystemException wrapper = ORBUtilSystemException.get(
        CORBALogDomains.RPC_ENCODING ) ;

    if (str == null || str.length() == 0)
        throw wrapper.badCodeSetString() ;

    StringTokenizer stok = new StringTokenizer(str, ", ", false);
    int nativeSet = 0;
    int conversionInts[] = null;

    try {

        // The first value is the native code set
        nativeSet = Integer.decode(stok.nextToken()).intValue();

        if (OSFCodeSetRegistry.lookupEntry(nativeSet) == null)
            throw wrapper.unknownNativeCodeset( new Integer(nativeSet) ) ;

        List conversionList = new ArrayList(10);

        // Now process the other values as part of the
        // conversion code set list.
        while (stok.hasMoreTokens()) {

            // decode allows us to specify hex, decimal, etc
            Integer value = Integer.decode(stok.nextToken());

            if (OSFCodeSetRegistry.lookupEntry(value.intValue()) == null)
                throw wrapper.unknownConversionCodeSet( value ) ;

            conversionList.add(value);
        }

        conversionInts = new int[conversionList.size()];

        for (int i = 0; i < conversionInts.length; i++)
            conversionInts[i] = ((Integer)conversionList.get(i)).intValue();

    } catch (NumberFormatException nfe) {
        throw wrapper.invalidCodeSetNumber( nfe ) ;
    } catch (NoSuchElementException nsee) {
        throw wrapper.invalidCodeSetString( nsee, str ) ;
    }

    // Otherwise return the CodeSetComponent representing
    // the given values
    return new CodeSetComponent(nativeSet, conversionInts);
}
 
Example 2
Source File: CodeSetComponentInfo.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Creates a CodeSetComponent from a String which contains a comma
 * delimited list of OSF Code Set Registry numbers.  An INITIALIZE
 * exception is thrown if any of the numbers are not known by our
 * registry.  Used by corba.ORB init.
 *
 * The first number in the list is taken as the native code set,
 * and the rest is the conversion code set list.
 *
 * The numbers can either be decimal or hex.
 */
public static CodeSetComponent createFromString(String str) {
    ORBUtilSystemException wrapper = ORBUtilSystemException.get(
        CORBALogDomains.RPC_ENCODING ) ;

    if (str == null || str.length() == 0)
        throw wrapper.badCodeSetString() ;

    StringTokenizer stok = new StringTokenizer(str, ", ", false);
    int nativeSet = 0;
    int conversionInts[] = null;

    try {

        // The first value is the native code set
        nativeSet = Integer.decode(stok.nextToken()).intValue();

        if (OSFCodeSetRegistry.lookupEntry(nativeSet) == null)
            throw wrapper.unknownNativeCodeset( new Integer(nativeSet) ) ;

        List conversionList = new ArrayList(10);

        // Now process the other values as part of the
        // conversion code set list.
        while (stok.hasMoreTokens()) {

            // decode allows us to specify hex, decimal, etc
            Integer value = Integer.decode(stok.nextToken());

            if (OSFCodeSetRegistry.lookupEntry(value.intValue()) == null)
                throw wrapper.unknownConversionCodeSet( value ) ;

            conversionList.add(value);
        }

        conversionInts = new int[conversionList.size()];

        for (int i = 0; i < conversionInts.length; i++)
            conversionInts[i] = ((Integer)conversionList.get(i)).intValue();

    } catch (NumberFormatException nfe) {
        throw wrapper.invalidCodeSetNumber( nfe ) ;
    } catch (NoSuchElementException nsee) {
        throw wrapper.invalidCodeSetString( nsee, str ) ;
    }

    // Otherwise return the CodeSetComponent representing
    // the given values
    return new CodeSetComponent(nativeSet, conversionInts);
}
 
Example 3
Source File: CodeSetComponentInfo.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Creates a CodeSetComponent from a String which contains a comma
 * delimited list of OSF Code Set Registry numbers.  An INITIALIZE
 * exception is thrown if any of the numbers are not known by our
 * registry.  Used by corba.ORB init.
 *
 * The first number in the list is taken as the native code set,
 * and the rest is the conversion code set list.
 *
 * The numbers can either be decimal or hex.
 */
public static CodeSetComponent createFromString(String str) {
    ORBUtilSystemException wrapper = ORBUtilSystemException.get(
        CORBALogDomains.RPC_ENCODING ) ;

    if (str == null || str.length() == 0)
        throw wrapper.badCodeSetString() ;

    StringTokenizer stok = new StringTokenizer(str, ", ", false);
    int nativeSet = 0;
    int conversionInts[] = null;

    try {

        // The first value is the native code set
        nativeSet = Integer.decode(stok.nextToken()).intValue();

        if (OSFCodeSetRegistry.lookupEntry(nativeSet) == null)
            throw wrapper.unknownNativeCodeset( new Integer(nativeSet) ) ;

        List conversionList = new ArrayList(10);

        // Now process the other values as part of the
        // conversion code set list.
        while (stok.hasMoreTokens()) {

            // decode allows us to specify hex, decimal, etc
            Integer value = Integer.decode(stok.nextToken());

            if (OSFCodeSetRegistry.lookupEntry(value.intValue()) == null)
                throw wrapper.unknownConversionCodeSet( value ) ;

            conversionList.add(value);
        }

        conversionInts = new int[conversionList.size()];

        for (int i = 0; i < conversionInts.length; i++)
            conversionInts[i] = ((Integer)conversionList.get(i)).intValue();

    } catch (NumberFormatException nfe) {
        throw wrapper.invalidCodeSetNumber( nfe ) ;
    } catch (NoSuchElementException nsee) {
        throw wrapper.invalidCodeSetString( nsee, str ) ;
    }

    // Otherwise return the CodeSetComponent representing
    // the given values
    return new CodeSetComponent(nativeSet, conversionInts);
}
 
Example 4
Source File: CodeSetComponentInfo.java    From JDKSourceCode1.8 with MIT License 4 votes vote down vote up
/**
 * Creates a CodeSetComponent from a String which contains a comma
 * delimited list of OSF Code Set Registry numbers.  An INITIALIZE
 * exception is thrown if any of the numbers are not known by our
 * registry.  Used by corba.ORB init.
 *
 * The first number in the list is taken as the native code set,
 * and the rest is the conversion code set list.
 *
 * The numbers can either be decimal or hex.
 */
public static CodeSetComponent createFromString(String str) {
    ORBUtilSystemException wrapper = ORBUtilSystemException.get(
        CORBALogDomains.RPC_ENCODING ) ;

    if (str == null || str.length() == 0)
        throw wrapper.badCodeSetString() ;

    StringTokenizer stok = new StringTokenizer(str, ", ", false);
    int nativeSet = 0;
    int conversionInts[] = null;

    try {

        // The first value is the native code set
        nativeSet = Integer.decode(stok.nextToken()).intValue();

        if (OSFCodeSetRegistry.lookupEntry(nativeSet) == null)
            throw wrapper.unknownNativeCodeset( new Integer(nativeSet) ) ;

        List conversionList = new ArrayList(10);

        // Now process the other values as part of the
        // conversion code set list.
        while (stok.hasMoreTokens()) {

            // decode allows us to specify hex, decimal, etc
            Integer value = Integer.decode(stok.nextToken());

            if (OSFCodeSetRegistry.lookupEntry(value.intValue()) == null)
                throw wrapper.unknownConversionCodeSet( value ) ;

            conversionList.add(value);
        }

        conversionInts = new int[conversionList.size()];

        for (int i = 0; i < conversionInts.length; i++)
            conversionInts[i] = ((Integer)conversionList.get(i)).intValue();

    } catch (NumberFormatException nfe) {
        throw wrapper.invalidCodeSetNumber( nfe ) ;
    } catch (NoSuchElementException nsee) {
        throw wrapper.invalidCodeSetString( nsee, str ) ;
    }

    // Otherwise return the CodeSetComponent representing
    // the given values
    return new CodeSetComponent(nativeSet, conversionInts);
}
 
Example 5
Source File: CodeSetComponentInfo.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Creates a CodeSetComponent from a String which contains a comma
 * delimited list of OSF Code Set Registry numbers.  An INITIALIZE
 * exception is thrown if any of the numbers are not known by our
 * registry.  Used by corba.ORB init.
 *
 * The first number in the list is taken as the native code set,
 * and the rest is the conversion code set list.
 *
 * The numbers can either be decimal or hex.
 */
public static CodeSetComponent createFromString(String str) {
    ORBUtilSystemException wrapper = ORBUtilSystemException.get(
        CORBALogDomains.RPC_ENCODING ) ;

    if (str == null || str.length() == 0)
        throw wrapper.badCodeSetString() ;

    StringTokenizer stok = new StringTokenizer(str, ", ", false);
    int nativeSet = 0;
    int conversionInts[] = null;

    try {

        // The first value is the native code set
        nativeSet = Integer.decode(stok.nextToken()).intValue();

        if (OSFCodeSetRegistry.lookupEntry(nativeSet) == null)
            throw wrapper.unknownNativeCodeset( new Integer(nativeSet) ) ;

        List conversionList = new ArrayList(10);

        // Now process the other values as part of the
        // conversion code set list.
        while (stok.hasMoreTokens()) {

            // decode allows us to specify hex, decimal, etc
            Integer value = Integer.decode(stok.nextToken());

            if (OSFCodeSetRegistry.lookupEntry(value.intValue()) == null)
                throw wrapper.unknownConversionCodeSet( value ) ;

            conversionList.add(value);
        }

        conversionInts = new int[conversionList.size()];

        for (int i = 0; i < conversionInts.length; i++)
            conversionInts[i] = ((Integer)conversionList.get(i)).intValue();

    } catch (NumberFormatException nfe) {
        throw wrapper.invalidCodeSetNumber( nfe ) ;
    } catch (NoSuchElementException nsee) {
        throw wrapper.invalidCodeSetString( nsee, str ) ;
    }

    // Otherwise return the CodeSetComponent representing
    // the given values
    return new CodeSetComponent(nativeSet, conversionInts);
}
 
Example 6
Source File: CodeSetComponentInfo.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Creates a CodeSetComponent from a String which contains a comma
 * delimited list of OSF Code Set Registry numbers.  An INITIALIZE
 * exception is thrown if any of the numbers are not known by our
 * registry.  Used by corba.ORB init.
 *
 * The first number in the list is taken as the native code set,
 * and the rest is the conversion code set list.
 *
 * The numbers can either be decimal or hex.
 */
public static CodeSetComponent createFromString(String str) {
    ORBUtilSystemException wrapper = ORBUtilSystemException.get(
        CORBALogDomains.RPC_ENCODING ) ;

    if (str == null || str.length() == 0)
        throw wrapper.badCodeSetString() ;

    StringTokenizer stok = new StringTokenizer(str, ", ", false);
    int nativeSet = 0;
    int conversionInts[] = null;

    try {

        // The first value is the native code set
        nativeSet = Integer.decode(stok.nextToken()).intValue();

        if (OSFCodeSetRegistry.lookupEntry(nativeSet) == null)
            throw wrapper.unknownNativeCodeset( new Integer(nativeSet) ) ;

        List conversionList = new ArrayList(10);

        // Now process the other values as part of the
        // conversion code set list.
        while (stok.hasMoreTokens()) {

            // decode allows us to specify hex, decimal, etc
            Integer value = Integer.decode(stok.nextToken());

            if (OSFCodeSetRegistry.lookupEntry(value.intValue()) == null)
                throw wrapper.unknownConversionCodeSet( value ) ;

            conversionList.add(value);
        }

        conversionInts = new int[conversionList.size()];

        for (int i = 0; i < conversionInts.length; i++)
            conversionInts[i] = ((Integer)conversionList.get(i)).intValue();

    } catch (NumberFormatException nfe) {
        throw wrapper.invalidCodeSetNumber( nfe ) ;
    } catch (NoSuchElementException nsee) {
        throw wrapper.invalidCodeSetString( nsee, str ) ;
    }

    // Otherwise return the CodeSetComponent representing
    // the given values
    return new CodeSetComponent(nativeSet, conversionInts);
}
 
Example 7
Source File: CodeSetComponentInfo.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Creates a CodeSetComponent from a String which contains a comma
 * delimited list of OSF Code Set Registry numbers.  An INITIALIZE
 * exception is thrown if any of the numbers are not known by our
 * registry.  Used by corba.ORB init.
 *
 * The first number in the list is taken as the native code set,
 * and the rest is the conversion code set list.
 *
 * The numbers can either be decimal or hex.
 */
public static CodeSetComponent createFromString(String str) {
    ORBUtilSystemException wrapper = ORBUtilSystemException.get(
        CORBALogDomains.RPC_ENCODING ) ;

    if (str == null || str.length() == 0)
        throw wrapper.badCodeSetString() ;

    StringTokenizer stok = new StringTokenizer(str, ", ", false);
    int nativeSet = 0;
    int conversionInts[] = null;

    try {

        // The first value is the native code set
        nativeSet = Integer.decode(stok.nextToken()).intValue();

        if (OSFCodeSetRegistry.lookupEntry(nativeSet) == null)
            throw wrapper.unknownNativeCodeset( new Integer(nativeSet) ) ;

        List conversionList = new ArrayList(10);

        // Now process the other values as part of the
        // conversion code set list.
        while (stok.hasMoreTokens()) {

            // decode allows us to specify hex, decimal, etc
            Integer value = Integer.decode(stok.nextToken());

            if (OSFCodeSetRegistry.lookupEntry(value.intValue()) == null)
                throw wrapper.unknownConversionCodeSet( value ) ;

            conversionList.add(value);
        }

        conversionInts = new int[conversionList.size()];

        for (int i = 0; i < conversionInts.length; i++)
            conversionInts[i] = ((Integer)conversionList.get(i)).intValue();

    } catch (NumberFormatException nfe) {
        throw wrapper.invalidCodeSetNumber( nfe ) ;
    } catch (NoSuchElementException nsee) {
        throw wrapper.invalidCodeSetString( nsee, str ) ;
    }

    // Otherwise return the CodeSetComponent representing
    // the given values
    return new CodeSetComponent(nativeSet, conversionInts);
}
 
Example 8
Source File: CodeSetComponentInfo.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Creates a CodeSetComponent from a String which contains a comma
 * delimited list of OSF Code Set Registry numbers.  An INITIALIZE
 * exception is thrown if any of the numbers are not known by our
 * registry.  Used by corba.ORB init.
 *
 * The first number in the list is taken as the native code set,
 * and the rest is the conversion code set list.
 *
 * The numbers can either be decimal or hex.
 */
public static CodeSetComponent createFromString(String str) {
    ORBUtilSystemException wrapper = ORBUtilSystemException.get(
        CORBALogDomains.RPC_ENCODING ) ;

    if (str == null || str.length() == 0)
        throw wrapper.badCodeSetString() ;

    StringTokenizer stok = new StringTokenizer(str, ", ", false);
    int nativeSet = 0;
    int conversionInts[] = null;

    try {

        // The first value is the native code set
        nativeSet = Integer.decode(stok.nextToken()).intValue();

        if (OSFCodeSetRegistry.lookupEntry(nativeSet) == null)
            throw wrapper.unknownNativeCodeset( new Integer(nativeSet) ) ;

        List conversionList = new ArrayList(10);

        // Now process the other values as part of the
        // conversion code set list.
        while (stok.hasMoreTokens()) {

            // decode allows us to specify hex, decimal, etc
            Integer value = Integer.decode(stok.nextToken());

            if (OSFCodeSetRegistry.lookupEntry(value.intValue()) == null)
                throw wrapper.unknownConversionCodeSet( value ) ;

            conversionList.add(value);
        }

        conversionInts = new int[conversionList.size()];

        for (int i = 0; i < conversionInts.length; i++)
            conversionInts[i] = ((Integer)conversionList.get(i)).intValue();

    } catch (NumberFormatException nfe) {
        throw wrapper.invalidCodeSetNumber( nfe ) ;
    } catch (NoSuchElementException nsee) {
        throw wrapper.invalidCodeSetString( nsee, str ) ;
    }

    // Otherwise return the CodeSetComponent representing
    // the given values
    return new CodeSetComponent(nativeSet, conversionInts);
}
 
Example 9
Source File: CodeSetComponentInfo.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Creates a CodeSetComponent from a String which contains a comma
 * delimited list of OSF Code Set Registry numbers.  An INITIALIZE
 * exception is thrown if any of the numbers are not known by our
 * registry.  Used by corba.ORB init.
 *
 * The first number in the list is taken as the native code set,
 * and the rest is the conversion code set list.
 *
 * The numbers can either be decimal or hex.
 */
public static CodeSetComponent createFromString(String str) {
    ORBUtilSystemException wrapper = ORBUtilSystemException.get(
        CORBALogDomains.RPC_ENCODING ) ;

    if (str == null || str.length() == 0)
        throw wrapper.badCodeSetString() ;

    StringTokenizer stok = new StringTokenizer(str, ", ", false);
    int nativeSet = 0;
    int conversionInts[] = null;

    try {

        // The first value is the native code set
        nativeSet = Integer.decode(stok.nextToken()).intValue();

        if (OSFCodeSetRegistry.lookupEntry(nativeSet) == null)
            throw wrapper.unknownNativeCodeset( new Integer(nativeSet) ) ;

        List conversionList = new ArrayList(10);

        // Now process the other values as part of the
        // conversion code set list.
        while (stok.hasMoreTokens()) {

            // decode allows us to specify hex, decimal, etc
            Integer value = Integer.decode(stok.nextToken());

            if (OSFCodeSetRegistry.lookupEntry(value.intValue()) == null)
                throw wrapper.unknownConversionCodeSet( value ) ;

            conversionList.add(value);
        }

        conversionInts = new int[conversionList.size()];

        for (int i = 0; i < conversionInts.length; i++)
            conversionInts[i] = ((Integer)conversionList.get(i)).intValue();

    } catch (NumberFormatException nfe) {
        throw wrapper.invalidCodeSetNumber( nfe ) ;
    } catch (NoSuchElementException nsee) {
        throw wrapper.invalidCodeSetString( nsee, str ) ;
    }

    // Otherwise return the CodeSetComponent representing
    // the given values
    return new CodeSetComponent(nativeSet, conversionInts);
}
 
Example 10
Source File: CodeSetComponentInfo.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Creates a CodeSetComponent from a String which contains a comma
 * delimited list of OSF Code Set Registry numbers.  An INITIALIZE
 * exception is thrown if any of the numbers are not known by our
 * registry.  Used by corba.ORB init.
 *
 * The first number in the list is taken as the native code set,
 * and the rest is the conversion code set list.
 *
 * The numbers can either be decimal or hex.
 */
public static CodeSetComponent createFromString(String str) {
    ORBUtilSystemException wrapper = ORBUtilSystemException.get(
        CORBALogDomains.RPC_ENCODING ) ;

    if (str == null || str.length() == 0)
        throw wrapper.badCodeSetString() ;

    StringTokenizer stok = new StringTokenizer(str, ", ", false);
    int nativeSet = 0;
    int conversionInts[] = null;

    try {

        // The first value is the native code set
        nativeSet = Integer.decode(stok.nextToken()).intValue();

        if (OSFCodeSetRegistry.lookupEntry(nativeSet) == null)
            throw wrapper.unknownNativeCodeset( new Integer(nativeSet) ) ;

        List conversionList = new ArrayList(10);

        // Now process the other values as part of the
        // conversion code set list.
        while (stok.hasMoreTokens()) {

            // decode allows us to specify hex, decimal, etc
            Integer value = Integer.decode(stok.nextToken());

            if (OSFCodeSetRegistry.lookupEntry(value.intValue()) == null)
                throw wrapper.unknownConversionCodeSet( value ) ;

            conversionList.add(value);
        }

        conversionInts = new int[conversionList.size()];

        for (int i = 0; i < conversionInts.length; i++)
            conversionInts[i] = ((Integer)conversionList.get(i)).intValue();

    } catch (NumberFormatException nfe) {
        throw wrapper.invalidCodeSetNumber( nfe ) ;
    } catch (NoSuchElementException nsee) {
        throw wrapper.invalidCodeSetString( nsee, str ) ;
    }

    // Otherwise return the CodeSetComponent representing
    // the given values
    return new CodeSetComponent(nativeSet, conversionInts);
}