<?xml version="1.0" encoding="UTF-8"?>











<rss version="2.0" xmlns:jf="http://www.jivesoftware.com/xmlns/jiveforums/rss">



<channel>
    <title>Support Forums: Message List - How do we know the size of an enumeration?</title>
    <link>http://www.theserverside.com</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    
        <generator>Jive Forums Silver 5.5.30 (www.jivesoftware.com)</generator>
    
    <pubDate>Tue, 18 Jun 2013 18:47:47 -0400</pubDate>


    <item>

        <title>Hi all there</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=1618</link>

        

        
            <description><![CDATA[<p><span>#include</span><span> </span><span>&lt;stdlib.h&gt;</span></p>...]]></description>
        

        <pubDate>Mon, 05 Nov 2012 01:18:59 -0500</pubDate>

        

        <jf:creationDate>Mon, 05 Nov 2012 01:18:59 -0500</jf:creationDate>
        <jf:modificationDate>Mon, 05 Nov 2012 01:18:59 -0500</jf:modificationDate>
        <jf:date>Nov 5, 2012</jf:date>
        <jf:author>William k Obrien</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>As a type of research primary market research</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=1618</link>

        

        
            <description><![CDATA[<p><span>As a type of research primary market research takes a lot of time, by hiring a management consultant they would be able to conduct an in-depth research which would provide conclusive and empirical results.&nbsp;<span><a...]]></description>
        

        <pubDate>Thu, 18 Oct 2012 09:20:57 -0400</pubDate>

        

        <jf:creationDate>Thu, 18 Oct 2012 09:20:57 -0400</jf:creationDate>
        <jf:modificationDate>Thu, 18 Oct 2012 09:20:57 -0400</jf:modificationDate>
        <jf:date>Oct 18, 2012</jf:date>
        <jf:author>mike rogerson</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>get size of enumertion in java</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=1618</link>

        

        
            <description><![CDATA[<p>you can just do</p>
<p>Collectios.list(enumerationName).size()</p>
<p>to get the size of the enumerationName</p>]]></description>
        

        <pubDate>Tue, 11 Sep 2012 14:24:06 -0400</pubDate>

        

        <jf:creationDate>Tue, 11 Sep 2012 14:24:06 -0400</jf:creationDate>
        <jf:modificationDate>Tue, 11 Sep 2012 14:24:06 -0400</jf:modificationDate>
        <jf:date>Sep 11, 2012</jf:date>
        <jf:author>zanga1</jf:author>
        <jf:replyCount>1</jf:replyCount>
    </item>


    <item>

        <title>what is your suggestion for the enumeration size?</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=1618</link>

        

        
            <description><![CDATA[<p>hi, all there.</p>
<p>what is your suggestion for the enumeration size for the properly running?</p>]]></description>
        

        <pubDate>Tue, 03 Apr 2012 08:16:03 -0400</pubDate>

        

        <jf:creationDate>Tue, 03 Apr 2012 08:16:03 -0400</jf:creationDate>
        <jf:modificationDate>Tue, 03 Apr 2012 08:16:03 -0400</jf:modificationDate>
        <jf:date>Apr 3, 2012</jf:date>
        <jf:author>Rose Russel</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>what is maxium value</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=1618</link>

        

        
            <description><![CDATA[<p>Howdy,<em> Rankin </em></p>
<p>what is maxium value of the Widgets?</p>]]></description>
        

        <pubDate>Sat, 17 Mar 2012 06:39:19 -0400</pubDate>

        

        <jf:creationDate>Sat, 17 Mar 2012 06:39:19 -0400</jf:creationDate>
        <jf:modificationDate>Sat, 17 Mar 2012 06:39:19 -0400</jf:modificationDate>
        <jf:date>Mar 17, 2012</jf:date>
        <jf:author>Shawna Debusk</jf:author>
        <jf:replyCount>1</jf:replyCount>
    </item>


    <item>

        <title>How do we know the size of an enumeration?</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=1618</link>

        

        
            <description><![CDATA[<p>given -</p>
<p>enum Widgets {TINY, SMALL, AVERAGE, BIG};</p>
<p>the size of Widgets is:</p>
<p>Widgets.values().length</p>
<p>&nbsp;</p>]]></description>
        

        <pubDate>Sat, 25 Jun 2011 16:38:24 -0400</pubDate>

        

        <jf:creationDate>Sat, 25 Jun 2011 16:38:24 -0400</jf:creationDate>
        <jf:modificationDate>Sat, 25 Jun 2011 16:38:24 -0400</jf:modificationDate>
        <jf:date>Jun 25, 2011</jf:date>
        <jf:author>Rankin Johnson</jf:author>
        <jf:replyCount>2</jf:replyCount>
    </item>


    <item>

        <title>How do we know the size of an enumeration?</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=1618</link>

        

        
            <description><![CDATA[Enumerations don't have a size as they don't contain anything.  You can get the size of the container, but an enumeration is essentially a const(in terms of the refrence not the object) iterator.  Its responsibiliy is to know where the next item is.  If...]]></description>
        

        <pubDate>Tue, 24 Oct 2000 00:04:13 -0400</pubDate>

        

        <jf:creationDate>Tue, 24 Oct 2000 00:04:13 -0400</jf:creationDate>
        <jf:modificationDate>Tue, 24 Oct 2000 00:04:13 -0400</jf:modificationDate>
        <jf:date>Oct 24, 2000</jf:date>
        <jf:author>Amir Yasin</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>How do we know the size of an enumeration?</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=1618</link>

        

        
            <description><![CDATA[If you want to know the size,you can always declare a temporary array and place all the elements in the array by using the methods hasMoreElements() and nextElement().
<br>
<br>And then use the size() method of the array.
<br>
<br>
<br>]]></description>
        

        <pubDate>Mon, 23 Oct 2000 18:06:38 -0400</pubDate>

        

        <jf:creationDate>Mon, 23 Oct 2000 18:06:38 -0400</jf:creationDate>
        <jf:modificationDate>Mon, 23 Oct 2000 18:06:38 -0400</jf:modificationDate>
        <jf:date>Oct 23, 2000</jf:date>
        <jf:author>Prashanth Ramesh</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>How do we know the size of an enumeration?</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=1618</link>

        

        
            <description><![CDATA[There is no such method like size() to know the size of Enumerations(Unlike Collection API method - size()) ....]]></description>
        

        <pubDate>Mon, 23 Oct 2000 15:38:36 -0400</pubDate>

        

        <jf:creationDate>Mon, 23 Oct 2000 15:38:36 -0400</jf:creationDate>
        <jf:modificationDate>Mon, 23 Oct 2000 15:38:36 -0400</jf:modificationDate>
        <jf:date>Oct 23, 2000</jf:date>
        <jf:author>Web Master</jf:author>
        <jf:replyCount>1</jf:replyCount>
    </item>


    <item>

        <title>How do we know the size of an enumeration?</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=1618</link>

        

        
            <description><![CDATA[Is that any method we can use to return the size of an enumeration (without looping through it)?  Thank you.
<br>
<br>Regards,
<br>&nbsp;&nbsp;Janice]]></description>
        

        <pubDate>Mon, 23 Oct 2000 13:34:22 -0400</pubDate>

        

        <jf:creationDate>Mon, 23 Oct 2000 13:34:22 -0400</jf:creationDate>
        <jf:modificationDate>Mon, 23 Oct 2000 13:34:22 -0400</jf:modificationDate>
        <jf:date>Oct 23, 2000</jf:date>
        <jf:author>Janice Wong</jf:author>
        <jf:replyCount>11</jf:replyCount>
    </item>



</channel>
</rss>

