You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by "Henri Yandell (JIRA)" <ji...@apache.org> on 2007/05/02 01:30:15 UTC

[jira] Commented: (LANG-290) EnumUtils for JDK 5.0

    [ https://issues.apache.org/jira/browse/LANG-290?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12492982 ] 

Henri Yandell commented on LANG-290:
------------------------------------

Class committed to LangTwo branch. Needs tests and javadoc.

> EnumUtils for JDK 5.0
> ---------------------
>
>                 Key: LANG-290
>                 URL: https://issues.apache.org/jira/browse/LANG-290
>             Project: Commons Lang
>          Issue Type: Improvement
>    Affects Versions: 2.2
>            Reporter: Henri Yandell
>             Fix For: LangTwo 1.0
>
>
> Below is an EnumUtils for JDK 1.5. It's also found in the enums.EnumUtils javadoc:
>  import java.util.*;
>  public class EnumUtils {
>    public static Enum getEnum(Class enumClass, String token) {
>      return Enum.valueOf(enumClass, token);
>    }
>    public static Map getEnumMap(Class enumClass) {
>      HashMap map = new HashMap();
>      Iterator itr = EnumUtils.iterator(enumClass);
>      while(itr.hasNext()) {
>        Enum enm = (Enum) itr.next();
>        map.put( enm.name(), enm );
>      }
>      return map;
>    }
>                   
>    public static List getEnumList(Class enumClass) {
>      return new ArrayList( EnumSet.allOf(enumClass) );
>    }
>                       
>    public static Iterator iterator(Class enumClass) {
>      return EnumUtils.getEnumList(enumClass).iterator();
>    }
>  }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org