active questions tagged enums - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T23:02:26Z http://stackoverflow.com/feeds/tag/enums http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1772276/grails-bind-request-parameters-to-enum 0 Grails bind request parameters to enum Don 2009-11-20T18:02:45Z 2009-11-27T14:33:20Z <p>Hi,</p> <p>My Grails application has a large number of enums that look like this:</p> <pre><code>public enum Rating { BEST("be"), GOOD("go"), AVERAGE("av"), BAD("ba"), WORST("wo") final String id private RateType(String id) { this.id = id } static public RateType getEnumFromId(String value) { values().find {it.id == value } } } </code></pre> <p>If I have a command object such as this:</p> <pre><code>class MyCommand { Rating rating } </code></pre> <p>I would like to (for example) automatically convert a request parameter with value "wo" to Rating.WORST.</p> <p>The procedure for defining custom converters is described <a href="http://stackoverflow.com/questions/963922/grails-date-unmarshalling">here</a> (in the context of converting Strings to Dates). Although this procedure works fine, I don't want to have to create a class implementing PropertyEditorSupport for each of my enums. Is there a better alternative?</p> <p>Thanks, Don</p> http://stackoverflow.com/questions/925419/get-databinding-object-in-control 0 Get databinding object in control Marco 2009-05-29T10:49:48Z 2009-11-27T05:00:03Z <p>Hello,</p> <p>I want to create an enumcombobox where the popup will show the enumvalues of the controls' binding object. Somehow I cannot get the binding object property at runtime. Databindings wil get me to the binding object. But the property and its type is invisable for me, or I just didn't find it yet... Can anyone help me with this?</p> http://stackoverflow.com/questions/1082532/how-to-tryparse-for-enum-value 2 How to TryParse for Enum value? Amby 2009-07-04T16:33:24Z 2009-11-26T14:41:03Z <p>I want to write a utility wherein can validate a given value (string) against possible values of enum. And in case of match, return the enum instance, else return a default value. PS: I don't want to user Try...catch here.</p> <pre><code>public static TEnum ToEnum&lt;TEnum&gt;(this string strEnumValue, TEnum defaultValue){ TEnum enumValue; if(!TryParse(typeof(TEnum),strEnumValue, out enumValue)){ //Looking for implementation?????? return defaultValue; } return enumValue; } </code></pre> <p>I am looking for some optmized implementation of "TryParse..." here. <strong>No try...catch or Enum.GetNames() solution, please.</strong></p> <p>[Edit] I know about Enum.Parse(typeof(TEnum), strEnumValue) method. It throw ArgumentException if strEnumValue is not valid.</p> <p>Looking for TryParse........</p> <p>Thanks</p> http://stackoverflow.com/questions/1803503/why-are-java-enums-not-clonable 1 Why are Java enums not clonable? Christian Strempfer 2009-11-26T12:49:06Z 2009-11-26T14:24:58Z <p>Is there any reason why enums in Java cannot be cloned?</p> <p>The manual states that </p> <blockquote> <p>This guarantees that enums are never cloned, which is necessary to preserve their "singleton" status. </p> </blockquote> <p>But returning the instance itself would also preserve its status, and I would be able to handle associated enums the same way as other clonable objects.</p> <p>One may argue that </p> <blockquote> <p>The general intent [of clone()] is that, for any object x, the expression: <code>x.clone() != x</code> will be true, [...]</p> </blockquote> <p>But for singletons on the contrary I want <code>x.clone() == x</code> to be true.</p> <p>So is there any real reason why enums cannot be cloned or did they forget to think about singletons, when <code>clone()</code> was specified?</p> <p>P.S.: I ask this question because I am developing within a model-driven environment at which huge parts of the application are generated. And now I have to introduce on more unnecessary case differentiation (as for primitives).</p> <p><strong>Edit</strong> To add one more argument: If the instance itself would be returned, then the singleton pattern would be transparent to referencing objects.</p> http://stackoverflow.com/questions/1799160/using-switch-statements-with-constants-or-enumerations-which-is-better-c 1 using switch statements with constants or enumerations? (Which is better)? C# Alex 2009-11-25T18:51:37Z 2009-11-25T20:50:54Z <p>HI, I've got a simple question, but one that has been bugging me for a while.</p> <p><strong>Question:</strong></p> <p>When using switch statements in C#, is it considered better practice to use <code>enums</code> over <code>constants</code> or vice versa? Or is it a matter of preference? I ask this because many people seem to like using <code>enums</code>, but when you are switching on an <code>int</code> value, you have to cast each of the values contained in the <code>enum</code> to an <code>int</code>, even if you specify the type of <code>enum</code>.</p> <p><strong>Code Snippet:</strong></p> <pre><code>class Program { enum UserChoices { MenuChoiceOne = 1, MenuChoiceTwo, MenuChoiceThree, MenuChoiceFour, MenuChoiceFive } static void Main() { Console.Write("Enter your choice: "); int someNum = int.Parse(Console.ReadLine()); switch (someNum) { case (int)UserChoices.MenuChoiceOne: Console.WriteLine("You picked the first choice!"); break; // etc. etc. } } } </code></pre> <p>Is there some way you can create an instance of the <code>enum</code> and just cast the whole <code>enum</code> to an int?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1799370/getting-attributes-of-enums-value 2 Getting attributes of Enum's value Alex K 2009-11-25T19:23:22Z 2009-11-25T19:48:35Z <p>Hi everyone,</p> <p>I would like to know if it is possible to get attributes of the enum values and not of the enum itself? For example, suppose I have the following enum:</p> <pre><code>enum FunkyAttributesEnum { [Description("Name With Spaces1")] NameWithoutSpaces1, [Description("Name With Spaces2")] NameWithoutSpaces2 } </code></pre> <p>What I want is given the enum type, produce 2-tuples of enum string value and its description.</p> <p>Value was easy:</p> <pre><code>Array Values = System.Enum.GetValues(typeof(FunkyAttributesEnum)); foreach (int Value in Values) Tuple.Value = Enum.GetName(typeof(FunkyAttributesEnum), Value); </code></pre> <p>But how do I get description attribute's value, to populate Tuple.Desc? I can think of how to do it if the Attribute belongs to the enum itself, but I am at a loss as to how to get it from the value of the enum.</p> <p>Thank you.</p> http://stackoverflow.com/questions/1795657/c-enums-nullable-or-unknown-value 4 C# Enums: Nullable or 'Unknown' Value? Sosh 2009-11-25T09:18:12Z 2009-11-25T09:24:02Z <p>If I have a class with an enum member, and I want to be able to represent situations where this member is not defied, which is it better:</p> <p>A) Declare the member as nullable in the class using nullable types. E.g.: </p> <pre><code>public SomeEnum? myEnum; </code></pre> <p>B) Add a default, 'unknown' value to the enumeration. E.g.:</p> <pre><code>public enum SomeEnum { Unknown, SomeValueA, SomeValueB, SomeValueC, } </code></pre> <p>I can't really see any major pros/cons either way. But perhaps one is preferrable over the other?</p> http://stackoverflow.com/questions/1788659/seemingly-basic-c-question 0 Seemingly basic C++ question shawnjan 2009-11-24T08:29:25Z 2009-11-25T00:58:54Z <p>Alright, so this is annoying the hell out of me and I'm sure its a simple thing to do. Basically, I'm working with an open source C++ client called POCO to make a email client for a class...</p> <p>Basically, I have a pop3 client object that retrieves emails from my email server, and then puts the emails in an object called MailMessage. Now, I want to be able to get my attachments, and the only functionality it seems that I have to do that is the following function:</p> <pre><code>static const std::string &amp; contentTransferEncodingToString( ContentTransferEncoding encoding ); </code></pre> <p>Problem is, I had no idea what the following was:</p> <blockquote> <p>ContentTransferEncoding encoding</p> </blockquote> <p>After digging into the source code, I found out it has something to do with "enums" (this is public by the way):</p> <pre><code>enum ContentTransferEncoding { ENCODING_7BIT, ENCODING_8BIT, ENCODING_QUOTED_PRINTABLE, ENCODING_BASE64 }; </code></pre> <p>Basically, the attachment I'm trying to open uses 7 bit encoding. Does ANYONE know how to deal with these enums, and how I can pass them into the contentTransferEncodingToString function?</p> <p>Thank you so much for your efforts :)</p> <blockquote> <p>EDIT:</p> <p>So, unreal, but I didn't realize that the function I was trying to access was protected, it wasn't the enums, so the way you all suggested to access the enums was correct! And I guess the way I was trying to access them was also correct =P. Just a big stupid mistake.</p> <p>But thanks for all your efforts!!! Great community :)</p> </blockquote> http://stackoverflow.com/questions/1793486/sharing-enums-with-entities-and-services-keep-in-one-layer-or-both 0 Sharing enums with entities and services, keep in one layer or both? suedeuno 2009-11-24T22:48:16Z 2009-11-24T23:43:32Z <p>So there is an entity that has an enum property and a wcf service that would return or take that enum type. Should the enum be in the entities assembly and mark it up with attributes or should I duplicate the enums for both assemblies, marking the service enums and leaving the entity enums undecorated? I don't like duplicating the enum types but I don't really want to decorate anything in my entities project either. What's the best practice?</p> http://stackoverflow.com/questions/1791228/abstract-enum-a-annotation-attribute-type 0 Abstract enum a annotation attribute type Alan Mc Kernan 2009-11-24T16:30:35Z 2009-11-24T16:41:02Z <p>Hi,</p> <p>I have an interface which multiple enums are implementing, i.e</p> <pre><code>public interface MinorCodes { public abstract int code(); public abstract String description(); } public enum IdentityMinorCodes implements MinorCodes { IDENTITY_UPLOAD_PICTURE_CODE(1, "Error while trying to upload a picture."), } </code></pre> <p>Now I want to have a custom annotation which has a value type of one of these concrete enum values, i.e</p> <pre><code>public @interface PokenService { MinorCodes[] exceptions(); } </code></pre> <p>But of course I cannot return an interface here.</p> <p>Does anyone know any solution or workaround to this?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/424366/c-string-enums 17 C# String enums. Sem Dendoncker 2009-01-08T14:15:55Z 2009-11-20T20:55:36Z <p>Hi, </p> <p>I have the following enumerator:</p> <pre><code>public enum AuthenticationMethod { FORMS = 1, WINDOWSAUTHENTICATION = 2, SINGLESIGNON = 3 } </code></pre> <p>The problem however is that I need the word "FORMS" when I ask for AuthenticationMethod.FORMS and not the id 1.</p> <p>I have found the following solution for this problem:</p> <p>First I need to create a custom attribute called "StringValue":</p> <pre><code>public class StringValue : System.Attribute { private string _value; public StringValue(string value) { _value = value; } public string Value { get { return _value; } } } </code></pre> <p>Then I can add this attribute to my enumerator:</p> <pre><code>public enum AuthenticationMethod { [StringValue("FORMS")] FORMS = 1, [StringValue("WINDOWS")] WINDOWSAUTHENTICATION = 2, [StringValue("SSO")] SINGLESIGNON = 3 } </code></pre> <p>And off course I need something to retrieve that StringValue:</p> <pre><code> public static class StringEnum { public static string GetStringValue(Enum value) { string output = null; Type type = value.GetType(); //Check first in our cached results... //Look for our 'StringValueAttribute' //in the field's custom attributes FieldInfo fi = type.GetField(value.ToString()); StringValue[] attrs = fi.GetCustomAttributes(typeof(StringValue), false) as StringValue[]; if (attrs.Length &gt; 0) { output = attrs[0].Value; } return output; } } </code></pre> <p>Good now I've got the tools to get a string value for an enumerator. I can then use it like this:</p> <pre><code>string valueOfAuthenticationMethod = StringEnum.GetStringValue(AuthenticationMethod.FORMS); </code></pre> <p>Owkay now all of this works like charm but I find it a whole lot of work. I was wondering if there isn't a better solution for this. I also tried something with a dictionary and static properties but that wasn't that good either.</p> <p>Kind Regards Sem</p> <p>edit: A lot of solutions are passed on. I'll try them all and then I'll let you guys know what will work out the best. Thx everyone</p> http://stackoverflow.com/questions/40211/how-to-compare-flags-in-c 8 How to Compare Flags in C#? David Basarab 2008-09-02T18:28:16Z 2009-11-20T11:12:51Z <p>I have a flag enum below.</p> <pre><code>[Flags] public enum FlagTest { None = 0x0, Flag1 = 0x1, Flag2 = 0x2, Flag3 = 0x4 } </code></pre> <p>I cannot make the if statement evaluate to true.</p> <pre><code>FlagTest testItem = FlagTest.Flag1 | FlagTest.Flag2; if (testItem == FlagTest.Flag1) { // Do something, // however This is never true. } </code></pre> <p>How can I make this true?</p> http://stackoverflow.com/questions/7244/anyone-know-a-good-workaround-for-the-lack-of-an-enum-generic-constraint 11 Anyone know a good workaround for the lack of an enum generic constraint? Keith 2008-08-10T17:14:10Z 2009-11-20T11:08:24Z <p>What I want to do is something like this: I have enums with combined flagged values.</p> <pre><code>public static class EnumExtension { public static bool IsSet&lt;T&gt;( this T input, T matchTo ) where T:enum //the constraint I want that doesn't exist in C#3 { return (input &amp; matchTo) != 0; } } </code></pre> <p>So then I could do:</p> <pre><code>MyEnum tester = MyEnum.FlagA | MyEnum.FlagB if( tester.IsSet( MyEnum.FlagA ) ) //act on flag a </code></pre> <p>Unfortunately C#'s generic where constraints have no enum restriction, only class and struct. C# doesn't see enums as structs (even though they are value types) so I can't add extension types like this.</p> <p>Anyone know a workaround?</p> http://stackoverflow.com/questions/1769050/how-can-i-add-some-enum-values-to-a-combobox 0 How can I add some Enum values to a combobox eft 2009-11-20T08:32:47Z 2009-11-20T08:59:53Z <p>In the following example I would like to add flavours that start with "APPLE" to a ComboBox on a form. When the enums have unique values it works fine; however, in my example two enums PINEAPPLE_PEACH and APPLE_ORANGE both have a value of 1 and this messes up the results.</p> <p>Is it erroneous to have two enums with the same value and, if so, how can I change my code to get consistent results?</p> <pre><code> public enum Flavour { APPLE_PEACH = 0, PINEAPPLE_PEACH = 1, APPLE_ORANGE = 1, APPLE_BANANA = 3, PINEAPPLE_GRAPE = 4 } private void AddFlavours() { foreach (Flavour flavour in Enum.GetValues(typeof(Flavour))) { string flavourName = Enum.GetName(typeof(Flavour), flavour); if (flavourName.StartsWith("APPLE")) { myComboBox.Items.Add(flavour); } } } </code></pre> http://stackoverflow.com/questions/1758321/casting-ints-to-enums-in-c 3 Casting ints to enums in C# CesarGon 2009-11-18T19:10:06Z 2009-11-19T11:27:44Z <p>There is something that I cannot understand in C#. You can cast an out-of-range int into an enum and the compiler does not flinch. Imagine this enum:</p> <pre><code>enum Colour { Red = 1, Green = 2, Blue = 3 } </code></pre> <p>Now, if you write:</p> <pre><code>Colour eco; eco = (Colour)17; </code></pre> <p>The compiler thinks that’s fine. And the runtime, too. Uh?</p> <p>Why did the C# team decide to make this possible? This decision misses the point of using enums, I think, in scenarios like this:</p> <pre><code>void DoSomethingWithColour(Colour eco) { //do something to eco. } </code></pre> <p>In a strong-typed language like C#, I would like to assume that eco will always hold a legal Colour value. But this is not the case. A programmer could call my method with a value of 17 assigned to eco (as in previous code snippet), so the code in my method must not assume that eco holds a legal Colour value. I need to test for it explicitly and handle the exceptional values as I please. Why is this?</p> <p>In my humble opinion, it would be much nicer if the compiler issued an error (or even a warning) message when casting an out-of range int into an enum, if the int value is known at compile time. If not, the runtime should throw an exception at the assignment statement.</p> <p>What do you think? Is there any reason why this is so?</p> <p>(Note. This is a question <a href="http://neh2.wordpress.com/2004/12/13/casting-enums-into-ints/" rel="nofollow">I posted ages ago on my blog</a> but got no informative response.)</p> http://stackoverflow.com/questions/1760965/how-to-count-all-the-enums-in-a-sql-table 0 How to count all the enums in a SQL table. unknown (google) 2009-11-19T04:54:46Z 2009-11-19T05:08:06Z <p>Okay so I have a database field called <code>moderated</code></p> <p>It is an ENUM with 3 values:</p> <pre><code>approved denied unmoderated </code></pre> <p>How can I write a query that counts the amount of each, so I can generate this output:</p> <pre><code>Approved: 3 Denied: 10 Unmoderated: 23 </code></pre> http://stackoverflow.com/questions/1757529/advantage-of-creating-a-temporary-buffer-when-iterating-over-and-modifying-a-coll 1 advantage of creating a temporary buffer when iterating over and modifying a collection in java joel_nc 2009-11-18T17:08:06Z 2009-11-18T17:25:54Z <p>I am iterating over, and modifying a map (which is created from an existing group of enum objects) like the following:</p> <pre><code>public class Dispenser { private Map&lt;Ingredient, Integer&gt; availableIngredients = new EnumMap&lt;Ingredient, Integer&gt;(Ingredient.class); public void orderSandwich(SandwichType sandwichType) { Map&lt;Ingredient, Integer&gt; buffer = new EnumMap&lt;Ingredient, Integer&gt;(availableIngredients); for (Map.Entry&lt;Ingredient, Integer&gt; entry : sandwichType.getIngredients().entrySet()) { Integer currentUnits = buffer.get(entry.getKey()); buffer.put(entry.getKey(), currentUnits - entry.getValue()); } availableIngredients.clear(); availableIngredients.putAll(buffer); } } </code></pre> <p>I wanted to ask if the temporary, method-local, <strong>buffer</strong> collection is necessary in this case. I mean, it works fine as it is but not sure its benefits. I have to clear my original collection and replace it with the contents of the buffer collection, which is basically the actual map that is modified within the loop. </p> <p>Since, it works fine without the buffer collection (using only my original collection), I was wondering if one approach is recommended over the oter and why.</p> <p>Many thanks for any advice on best practices on this.</p> http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python 42 What's the best way to implement an 'enum' in Python? sectrean 2008-08-31T15:55:47Z 2009-11-18T02:51:40Z <p>I'm mainly a C# developer, but I'm currently working on a project in Python.</p> <p>What's the best way to implement the equivalent of an enum in Python? </p> http://stackoverflow.com/questions/1752381/whats-the-best-way-to-return-the-status-of-multiple-conditions 0 What's the best way to return the status of multiple conditions? CrazyJugglerDrummer 2009-11-17T22:38:40Z 2009-11-17T23:27:25Z <p>So I have a <code>House</code> class that has a method <code>House.buy(Person p)</code>, causing the person to buy the house. I want to know if its possible for the Person to buy the House, so I also have a method <code>House.tryBuy(Player p)</code> that returns if the Person can buy the house. I have an enum <code>BuyState</code> with values like <code>OK</code>, <code>NotEnoughMoney</code>, and <code>AlreadyOwned</code>. There's a few different conditions to be satisfied, and the client would like to know which failed. But what if multiple conditions fail? I could either have a hierarchy, like if House is already owned and Person doesn't have enough money, return <code>BuyStates.AlreadyOwned</code>. But this only lets me tell the client one thing.</p> <p>So I could have N conditions and an enum with N*N values, like <code>NotEnoughMoney_AND_SomeOtherCondition</code> but that makes no sense at all for several reasons. I know there are bit-fields, so I could have a bit for each condition with whether it failed or not, but they just seem too low-level and annoying to implement. So need a way to return a list of values from an enum, which leads me to having an enum of BuyConditions, like "AlreadyOwned, NotEnougMoney, etc," and a class <code>BuyState</code> which contains a list of conditions that failed. If there are no conditions in the list, then everything went fine. Is this the "best" possible design?</p> http://stackoverflow.com/questions/1750435/comparing-java-enum-members-or-equals 4 Comparing Java enum members: == or equals() ? Bears will eat you 2009-11-17T17:26:27Z 2009-11-17T17:54:52Z <p>I know that Java enums are compiled to classes with private constructors and a bunch of public static members. When comparing two members of a given enum, I've always used <code>.equals()</code>, e.g.</p> <pre><code>public useEnums(SomeEnum a) { if(a.equals(SomeEnum.SOME_ENUM_VALUE)) { ... } ... } </code></pre> <p>However, I just came across come code that uses the equals operator <code>==</code> instead:</p> <pre><code>public useEnums2(SomeEnum a) { if(a == SomeEnum.SOME_ENUM_VALUE) { ... } ... } </code></pre> <p>I've been programming in Java for 5+ years, and I thought I understood difference between the two - but I'm still scratching my head at which one is more correct. Which operator is the one I should be using?</p> http://stackoverflow.com/questions/1747212/finding-the-highest-value-in-an-enumeration 1 Finding the Highest Value in an Enumeration Cygon 2009-11-17T07:41:08Z 2009-11-17T08:16:30Z <p>I'm writing a method which determines the highest value in a .NET enumeration so I can create a BitArray with one bit for each enum value:</p> <pre><code>pressedKeys = new BitArray(highestValueInEnum&lt;Keys&gt;()); </code></pre> <p>I need this on two different enumerations, so I turned it into a generic method:</p> <pre><code>/// &lt;summary&gt;Returns the highest value encountered in an enumeration&lt;/summary&gt; /// &lt;typeparam name="EnumType"&gt; /// Enumeration of which the highest value will be returned /// &lt;/typeparam&gt; /// &lt;returns&gt;The highest value in the enumeration&lt;/returns&gt; private static int highestValueInEnum&lt;EnumType&gt;() { int[] values = (int[])Enum.GetValues(typeof(EnumType)); int highestValue = values[0]; for(int index = 0; index &lt; values.Length; ++index) { if(values[index] &gt; highestValue) { highestValue = values[index]; } } return highestValue; } </code></pre> <p>As you can see, I'm casting the return value of Enum.GetValues() to int[], not to EnumType[]. This is because I can't cast EnumType (which is a generic type parameter) to int later.</p> <p>The code works. But is it valid? Can I always cast the return from Enum.GetValues() to int[]?</p> http://stackoverflow.com/questions/256978/how-to-persist-an-enum-using-nhibernate 3 How to persist an enum using NHibernate Meidan Alon 2008-11-02T15:30:50Z 2009-11-17T03:28:28Z <p>Hi,</p> <p>Is there a way to persist an enum to the DB using NHibernate? That is have a table of both the code and the name of each value in the enum.</p> <p>I want to keep the enum without an entity, but still have a foreign key (the int representation of the enum) from all other referencing entities to the enum's table.</p> http://stackoverflow.com/questions/1605976/using-type-aliases-to-java-enums 0 Using type aliases to Java enums oxbow_lakes 2009-10-22T09:13:16Z 2009-11-16T20:37:13Z <p>I would like to achieve something similar to how scala defines <code>Map</code> as <strong>both</strong> a predefined <code>type</code> and <code>object</code>. In <code>Predef</code>:</p> <pre><code>type Map[A, +B] = collection.immutable.Map[A, B] val Map = collection.immutable.Map //object Map </code></pre> <p>However, I'd like to do this using Java <code>enum</code>s (from a shared library). So for example, I'd have some global alias:</p> <pre><code>type Country = my.bespoke.enum.Country val Country = my.bespok.enum.Country //compile error: "object Country is not a value" </code></pre> <p>The reason for this is that I'd like to be able to use code like:</p> <pre><code>if (city.getCountry == Country.UNITED_KINGDOM) //or... if (city.getCountry == UNITED_KINGDOM) </code></pre> <p>Howver, this not possible whilst importing my type alias at the same time. <em>Note: this code would work just fine if I had not declared a predefined type and imported it!</em> Is there some syntax I can use here to achieve this?</p> http://stackoverflow.com/questions/105372/c-how-to-enumerate-an-enum 28 C#: How to enumerate an enum? Ian Boyd 2008-09-19T20:34:50Z 2009-11-16T17:19:51Z <p>How can you enumerate a enum in C#?</p> <p>e.g. the following does not compile:</p> <pre><code>public enum Suit { Spades, Hearts, Clubs, Diamonds } public void EnumerateAllSuitsDemoMethod() { foreach (Suit suit in Suit) { DoSomething(suit); } } </code></pre> <p>It gives the compile time error: 'Suit' is a 'type' but is used like a 'variable'</p> <p>It fails on the <em>Suit</em> keyword, the 2nd one.</p> <p><em>Edit: Got rid of Console.WriteLine(), it was confusing people</em></p> http://stackoverflow.com/questions/1741189/subclass-check-is-operator-or-enum-check 0 Subclass check, is operator or enum check jea 2009-11-16T10:00:02Z 2009-11-16T13:14:30Z <p>Hi A couple of friends was discussing the use of inheritance and how to check if a subclass is of a specific type and we decided to post it here on Stack. The debate was about if you should implement a abstract enum in the base class to be used for checking the type of the subclass, or if you should use the is operator. </p> <p>Alt 1.</p> <pre><code>public abstract class Document{ } public class PDF:Document{ } Check: If (myobj is PDF) </code></pre> <p>Alt 2.</p> <pre><code>public abstract class Document{ public abstract DucumentType TypeOfDocument {get;} } public class PDF:Document{ public DucumentType TypeOfDocument { get{return DucumentType.PDF };} } public enum DucumentType{ PDF, Word } Check: If (myobj.TypeOfDocument == DucumentType.PDF) </code></pre> <p>The ones for Alt1. ment that Alt2 slightly breaks SRP, you don’t take advantage of OO, Your repeating the abstraction. Since inheritance is the hardest connection between classes you cannot avoid knowing of them, and if you must go thru with inheritance minimize the impact. Alt2 also breaks DRY</p> <p>The ones for Alt2 ment that Alt2 will be removing type checking entirely and replacing it with the option of checking this enum instead. Removing all hard connections to all subclasses, and the value of the enum itself does not say anything about which concrete implementation thats currently beeing operated on.</p> <p>Whats your opinion about the two alternatives? </p> <p>No discussion of inheritance vs. composition etcetera, that’s another question!</p> http://stackoverflow.com/questions/1741708/enum-values-length-vs-private-field 2 Enum values().length vs private field mykhaylo 2009-11-16T11:49:38Z 2009-11-16T12:00:26Z <p>I have enumeration like this:</p> <pre><code>public enum Configuration { XML(1), XSLT(10), TXT(100), HTML(2), DB(20); private final int id; private Configuration(int id) { this.id = id; } public int getId() { return id; } } </code></pre> <p>Sometimes I need to check how many fields I have in enumeration. What is the best solution? Should I use a method "values().length"? Or maybe, I must create constant field in enumeration like this:</p> <pre><code>public enum Configuration { XML(1), XSLT(10), TXT(100), HTML(2), DB(20); private final int id; private Configuration(int id) { this.id = id; } public int getId() { return id; } public static final int Size = 5; } </code></pre> <p>What is the fastest and more elegant solution?</p> http://stackoverflow.com/questions/1734872/how-do-i-sort-enum-members-alphabetically-in-java 1 How do I sort enum members alphabetically in Java? joel_nc 2009-11-14T17:08:56Z 2009-11-15T13:32:10Z <p>I have an enum class like the following:</p> <pre><code>public enum Letter { OMEGA_LETTER("Omega"), GAMMA_LETTER("Gamma"), BETA_LETTER("Beta"), ALPHA_LETTER("Alpha"), private final String description; Letter() { description = toString(); } Letter(String description) { this.description = description; } public String getDescription() { return description; } } </code></pre> <p>Later down my code I basically iterate over the Letter enum and print its members out to the console:</p> <pre><code>for (Letter letter : Letter.values()) { System.out.println(letter.getDescription()); } </code></pre> <p>I thought that the values() method would give me an ordered view of the enum (as mentioned <a href="http://www.ibm.com/developerworks/java/library/j-tiger04195/index.html" rel="nofollow">here</a>), but this is not the case here. I simply get the enum members in the order I created them within the Letter enum class. Is there a way to output the values of an enum in alphabetical order? Would I need a separate comparator object, or is there a built-in way to do this? Basically I would like the values to be alphabetically sorted based on the getDescription() text:</p> <pre><code>Alpha Beta Gamma Omega </code></pre> http://stackoverflow.com/questions/1734565/how-to-use-the-tostring-method-for-multiple-enum-members-in-same-class-in-java 0 how to use the toString() method for multiple enum members in same class in Java joel_nc 2009-11-14T15:30:08Z 2009-11-14T15:34:35Z <p>I am trying to add more user friendly descriptions for multiple enum members in the same class. Right now I just have each enum returned in lowercase:</p> <pre><code>public enum Part { ROTOR, DOUBLE_SWITCH, 100_BULB, 75_BULB, SMALL_GAUGE, LARGE_GAUGE, DRIVER; private final String description; Part() { description = toString().toLowerCase(); } Part(String description) { this.description = description; } public String getDescription() { return description; } } </code></pre> <p>Is there a way to give each enum value a more user-friendly name which I can display via the toString() for each Part member? For example when I interate over the Parts:</p> <pre><code>for (Part part : Part.values()) { System.out.println(part.toString()); } </code></pre> <p>rather than getting the literal list:</p> <pre><code>ROTOR DOUBLE_SWITCH 100_BULB 75_BULB SMALL_GAUGE LARGE_GAUGE DRIVER </code></pre> <p>I am hoping to give meaningful descriptions to each item so I can output something like:</p> <pre><code>Standard Rotor Double Switch 100 W bulb 75 W bulb Small Gauge Large Gauge Torque Driver </code></pre> <p>So I was wondering if there is a way to give those meaningful descriptions for each enum member in my Part enum class.</p> <p>Many thanks</p> http://stackoverflow.com/questions/514194/using-enum-inside-types-compiler-warning-c4482-c 1 Using enum inside types - Compiler warning C4482 C++ Appu 2009-02-05T01:38:48Z 2009-11-14T03:59:55Z <p>I am using fully qualified name of the enum inside a method in one of my class. But I am getting compiler warning which says <em>"warning C4482: nonstandard extension used: enum 'Foo' used in qualified name"</em>. In C++, do we need to use enums without the qualified name? But IMO, that looks ugly. </p> <p>Any thoughts?</p> http://stackoverflow.com/questions/1727143/c-enum-value-initialization 0 C++ enum value initialization Gayan 2009-11-13T04:34:11Z 2009-11-13T04:49:48Z <p>I have an enum declared in my code as:</p> <pre><code>enum REMOTE_CONN { REMOTE_CONN_DEFAULT = 0, REMOTE_CONN_EX_MAN = 10000, REMOTE_CONN_SD_ANNOUNCE, REMOTE_CONN_SD_IO, REMOTE_CONN_AL, REMOTE_CONN_DS }; </code></pre> <p>I expect the value of REMOTE_CONN_SD_IO to be 10002, but when debugging the value of ((int)REMOTE_CONN_SD_IO) was given as 3.</p> <p>Another component uses the same enum and it gives the expected value of 10002 to REMOTE_CONN_SD_IO.</p> <p>What could be the reason for this?</p>