[ 
https://issues.apache.org/jira/browse/XMLSCHEMA-22?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13237555#comment-13237555
 ] 

Ali commented on XMLSCHEMA-22:
------------------------------

I included following modified version of EnumUtil in my project, and it solved 
the error "java.lang.IllegalArgumentException: No enum const class 
org.apache.ws.commons.schema.XmlSchemaForm.QUALİFİED". Until the issue is 
fixed, this is the workaround for me..

---

package org.apache.ws.commons.schema;

import java.util.Locale;

/**
 * @author Ali Pakkan
 * 
 */
public class EnumUtil {
        private EnumUtil() {
        }
        static <T extends Enum<T>> T valueOf(Class<T> enumClass, String name) {
                return Enum.valueOf(enumClass, 
name.toUpperCase(Locale.ENGLISH));
        }
}
                
> enum parsing is locale specific
> -------------------------------
>
>                 Key: XMLSCHEMA-22
>                 URL: https://issues.apache.org/jira/browse/XMLSCHEMA-22
>             Project: XmlSchema
>          Issue Type: Bug
>    Affects Versions: XmlSchema 2.0
>            Reporter: Daniel Kulp
>
> The EnumUtils class used to parse the enums does:
> {code}    
>     static <T extends Enum<T>> T valueOf(Class<T> enumClass, String name) {
>         return Enum.valueOf(enumClass, name.toUpperCase());
>     }
> {code}
> but the toUpperCase call there is locale specific and could result in not 
> being able to parse the enums.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to