Tagged Questions
A data type consisting of a set of named values called elements, members or enumerators of the type.
289
votes
11answers
77k views
C#: How to enumerate an enum?
How can you enumerate a enum in C#?
e.g. the following does not compile:
public enum Suit
{
Spades,
Hearts,
Clubs,
Diamonds
}
public void EnumerateAllSuitsDemoMethod()
{
foreach (Suit suit in ...
279
votes
32answers
51k views
What's the best way to implement an 'enum' in Python?
I'm mainly a C# developer, but I'm currently working on a project in Python.
What's the best way to implement the equivalent of an enum in Python?
207
votes
9answers
99k views
184
votes
2answers
92k views
What is a typedef enum in Objective C?
I don't think I fundamentally understand what a enum is, and when to use it.
For example:
typedef enum {
kCircle,
kRectangle,
kOblateSpheroid
} ShapeType;
What is really being ...
113
votes
9answers
81k views
Java - Convert String to enum
Say I have an enum which is just
public enum Blah {
A, B , C, D
}
and I would like to find the enum value of a string of for example "A" which would be Blah.A. How would it be possible to do ...
101
votes
9answers
29k views
Enums in JavaScript?
What is the preferred syntax for defining enums in JavaScript? Something like:
my.namespace.ColorEnum = {
RED : 0,
GREEN : 1,
BLUE : 2
}
// later on
if(currentColor == ...
95
votes
14answers
27k views
Create Generic method constraining T to an Enum
I'm building a function to extend the Enum.Parse concept that
Allows a default value to be parsed in case that an Enum value is not found
Is case insensitive
So I wrote the following:
public ...
92
votes
17answers
57k views
C# String enums
I have the following enumeration:
public enum AuthenticationMethod
{
FORMS = 1,
WINDOWSAUTHENTICATION = 2,
SINGLESIGNON = 3
}
The problem however is that I need the word "FORMS" when I ...
89
votes
6answers
24k views
WPF: How to bind RadioButtons to an enum?
I've got an enum like this:
public enum MyLovelyEnum
{
FirstSelection,
TheOtherSelection,
YetAnotherOne
};
I got a property in my DataContext:
public MyLovelyEnum VeryLovelyEnum { get; set; ...
86
votes
6answers
43k views
C# Enums returning int value
I have a class called Questions, in this class is an enum called question which looks like this.
public enum Question
{
Role = 2,
ProjectFunding = 3,
TotalEmployee = 4,
...
83
votes
8answers
16k views
Can You Loop Through All Enum Values? c#
public enum Foos
{
A,
B,
C
}
Is there a way to loop through the possible values of Foo?
Basically?
foreach(Foo in Foos)
67
votes
12answers
16k views
Enum Flags Attribute
Anyone have a good explanation or example they could post?
Edit: I changed the answer, this one is more in depth.
61
votes
13answers
3k views
Should an Enum start with a 0 or a 1?
Imagine I have defined the following Enum:
public enum Status : byte
{
Inactive = 1,
Active = 2,
}
What's the best practice to use enum? Should it start with 1 like the above example or ...
60
votes
12answers
16k views
Enums in Ruby
What's the best way to implement the enum idiom in Ruby? I'm looking for something which I can use (almost) like the Java/C# enums.
59
votes
6answers
19k views
Comparing Java enum members: == or equals()?
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 .equals(), e.g.
public ...
56
votes
5answers
11k views
Scala doesn't have enums - what to use instead of an enum
Scala doesn't have type-safe enums like Java has. If I have a set of related constants then what is the best way in Scala to represent those constants?
54
votes
16answers
23k views
Forward declaring an enum in c++
I'm trying to do something like the following:
enum E;
void Foo(E e);
enum E {A, B, C};
which the compiler rejects. I've had a quick look on Google and the consensus seems to be "you can't do ...
53
votes
7answers
2k views
Are C++ enums slower to use than integers?
It's really a simple problem :
I'm programming a Go program. Should I represent the board with a QVector<int> or a QVector<Player> where
enum Player
{
EMPTY = 0,
BLACK = 1,
...
53
votes
8answers
34k views
Most common C# bitwise operations
For the life of me, I can't remember how to set, delete, toggle or test a bit in a bitfield. Either I'm unsure or I mix them up because I rarely need these. So a "bit-cheat-sheet" would be nice to ...
50
votes
18answers
23k views
How do I override ToString in C# enums?
In the post Enum ToString, a method is described to use the custom attribute DescriptionAttribute like this:
Enum HowNice {
[Description("Really Nice")]
ReallyNice,
[Description("Kinda Nice")]
...
48
votes
9answers
20k views
Enum “Inheritance”
I have an enum in a low level namespace. I'd like to provide a class or enum in a mid level namespace that "inherits" the low level enum.
namespace low
{
public enum base
{
x, y, z
}
}
...
46
votes
7answers
7k views
What is the tilde (~) in a C# enumeration?
I'm always surprised that even after using C# for all this time now, I still manage to find things I didn't know about...
I've tried searching the internet for this, but using the "~" in a search ...
42
votes
8answers
5k views
Best practices for using and persisting enums
I've seen several questions/discussions here about the best way to handle and persist enum-like values (e.g. Persisting data suited for enums , How to persist an enum using NHibernate ), and I'd like ...
42
votes
9answers
9k views
C# vs Java Enum (for those new to C#)
I've been programming in Java for a while and just got thrown onto a project that's written entirely in C#. I'm trying to come up to speed in C#, and noticed enums used in several places in my new ...
41
votes
17answers
22k views
Is there a simple script to convert C++ enum to string?
Suppose we have some named enums:
enum MyEnum {
FOO,
BAR = 0x50
};
What I googled for is a script (any language) that scans all the headers in my project and generates a header with one ...
39
votes
3answers
2k views
Why was “Avoid Enums Where You Only Need Ints” removed from Android's performance tips?
The section "Avoid Enums Where You Only Need Ints" was removed from the official developper documentation. (See Why doesn't Android use more enums? for the old section content)
Why? Was there a ...
39
votes
6answers
19k views
How do I convert an enum to a list in C#?
Is there a way to convert an enum to a list that contains all the enum's options?
39
votes
11answers
15k views
How to Compare Flags in C#?
I have a flag enum below.
[Flags]
public enum FlagTest
{
None = 0x0,
Flag1 = 0x1,
Flag2 = 0x2,
Flag3 = 0x4
}
I cannot make the if statement evaluate to true.
FlagTest testItem = ...
36
votes
9answers
11k views
C# naming convention for enum and matching property
I often find myself implementing a class maintaining some kind of own status property as an enum: I have a Status enum and ONE Status property of Status type. How should I solve this name conflict?
...
35
votes
4answers
12k views
How to work with Enums in Entity Framework?
What is the best way to work with Enums in Entity Framework?
Remarks: I'm using EF 3 and Firebird.
35
votes
2answers
25k views
What is the size of an enum in C?
I'm creating a set of enum values, but I need each enum value to be 64 bits wide. If I recall correctly, an enum is generally the same size as an int; but I thought I read somewhere that (at least in ...
35
votes
14answers
11k views
Should I use #define, enum or const?
In a C++ project I'm working on I have a flag kind of value which can have 4 values. Those 4 flags can be combined. Flags describe the records in database and can be:
new record
deleted record
...
34
votes
6answers
19k views
Java extend enum
Is something like this possible in Java. I want to take an existing enum and add more elements to it
enum A {a,b,c}
enum B extends A {d}
/*B is {a,b,c,d}*/
33
votes
6answers
5k views
Java Enum definition
I thought I understood Java generics pretty well, but then I came across the following in java.lang
Class Enum<E extends Enum<E>>
Could someone explain how to interpret this type ...
31
votes
7answers
572 views
How is it that an enum derives from System.Enum and is an integer at the same time?
Edit: Comments at bottom. Also, this.
Here's what's kind of confusing me. My understanding is that if I have an enum like this...
enum Animal
{
Dog,
Cat
}
...what I've essentially done ...
31
votes
8answers
11k views
Ways to save enums in database
I am wondering what the best ways to save enums into a database is.
I know there are name() and valueOf() methods to make it into a String back. But are there any other (flexible) options to store ...
30
votes
12answers
11k views
How to TryParse for Enum value?
I want to write a function which can validate a given value (passed as a string) against possible values of an enum. In the case of a match, it should return the enum instance; otherwise, it should ...
29
votes
5answers
13k views
How to persist an enum using NHibernate
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.
I want to keep the enum without an entity, but still have a ...
28
votes
4answers
5k views
Enum type constraints in C#
What is the reason behind C# not allowing type constraints on Enum's? I'm sure there is a method behind the madness, but I'd like to understand why it's not possible.
Below is what I would like to be ...
28
votes
3answers
13k views
Binding ComboBoxes to enums… in Silverlight!
So, the web, and StackOverflow, have plenty of nice answers for how to bind a combobox to an enum property in WPF. But Silverlight is missing all of the features that make this possible :(. For ...
28
votes
3answers
10k views
Convert from enum ordinal to enum type
I've an enum type: ReportTypeEnum that get passed between methods in all my classes but I then need to pass this on the URL so I use the ordinal method to get the int value. After I get it in my other ...
28
votes
8answers
21k views
C++: Iterate through an enum
I just noticed that you can not use standard math operators on an enum such as ++ or +=
So what is the best way to iterate through all of the values in a C++ enum?
28
votes
8answers
7k views
28
votes
9answers
5k views
Anyone know a good workaround for the lack of an enum generic constraint?
What I want to do is something like this: I have enums with combined flagged values.
public static class EnumExtension
{
public static bool IsSet<T>( this T input, T matchTo )
...
27
votes
3answers
5k views
JSON serialization of c# enum as string
I have a class that contains an enum property, and upon serializing the object using JavaScriptSerializer, my json result contains the integer value of the enumeration rather than its string "name". ...
26
votes
3answers
11k views
Passing an enum value as command parameter from xaml
I want to pass an enum value as command parameter in WPF, something like this -
<Button x:Name="uxSearchButton" Command="{Binding Path=SearchMembersCommand}"
...
25
votes
8answers
5k views
Enum Naming Convention - Plural
I'm asking this question despite having read similar but not exactly what I want at http://stackoverflow.com/questions/495051/c-naming-convention-for-enum-and-matching-property
I found I have a ...
24
votes
1answer
11k views
Map enum in JPA with fixed values?
I'm looking for the different ways to map an enum using JPA. I especially want to set the integer value of each enum entry and to save only the integer value.
@Entity
@Table(name = "AUTHORITY_")
...
24
votes
14answers
3k views
Should enums in C# have their own file?
I have a class which uses an enumeration, the enum is currently in its own file which seems wasteful.
What is the general opinion on enums being placed within the namespace of a file that they are ...
24
votes
10answers
8k views
How do you pass multiple enum values in C#?
Sometimes when reading others' C# code I see a method that will accept multiple enum values in a single parameter. I always thought it was kind of neat, but never looked into it.
Well, now I think I ...