scolebourne    2002/09/28 03:49:59

  Modified:    lang/src/java/org/apache/commons/lang/enum EnumUtils.java
  Log:
  Javadoc fixes and enhancements
  
  Revision  Changes    Path
  1.3       +4 -1      
jakarta-commons/lang/src/java/org/apache/commons/lang/enum/EnumUtils.java
  
  Index: EnumUtils.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/enum/EnumUtils.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- EnumUtils.java    17 Sep 2002 09:33:28 -0000      1.2
  +++ EnumUtils.java    28 Sep 2002 10:49:59 -0000      1.3
  @@ -100,6 +100,7 @@
       /**
        * Gets the Map of Enum objects by name using the Enum class.
        * If the requested class has no enum objects an empty Map is returned.
  +     * The Map is unmodifiable.
        * 
        * @param enumClass  the class of the Enum to get
        * @return the enum object Map
  @@ -114,6 +115,7 @@
        * Gets the List of Enum objects using the Enum class.
        * The list is in the order that the objects were created (source code order).
        * If the requested class has no enum objects an empty List is returned.
  +     * The List is unmodifiable.
        * 
        * @param enumClass  the class of the Enum to get
        * @return the enum object Map
  @@ -128,6 +130,7 @@
        * Gets an iterator over the Enum objects in an Enum class.
        * The iterator is in the order that the objects were created (source code 
order).
        * If the requested class has no enum objects an empty Iterator is returned.
  +     * The Iterator is unmodifiable.
        * 
        * @param enumClass  the class of the Enum to get
        * @return an iterator of the Enum objects
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to