44
votes
18answers
4k 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?
28
votes
9answers
9k 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 …
25
votes
8answers
2k 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. http://stackoverflow.com/questions/492096/persisting-data-suited-for-enums , …
21
votes
16answers
5k 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 …
17
votes
8answers
1k views
Can You Loop Through All Enum Values? c#
Hi there,
public enum Foos
{
A,
B,
C
}
Is there a way to loop through the possible values of Foo?
Basically?
foreach(Foo in Foos)
16
votes
10answers
4k views
C# String enums.
Hi,
I have the following enumerator:
public enum AuthenticationMethod
{
FORMS = 1,
WINDOWSAUTHENTICATION = 2,
SINGLESIGNON = 3
}
The problem however is that I need the word "FORMS" when I ask …
16
votes
6answers
2k 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 …
16
votes
14answers
3k 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
…
15
votes
4answers
578 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?
15
votes
6answers
2k 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 …
14
votes
8answers
2k views
C# naming convention for enum and matching property
Hi All,
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 …
14
votes
7answers
2k views
Are C++ enums signed or unsigned?
Are C++ enums signed or unsigned? And by extension is it safe to validate an input by checking that it is <= your max value, and leave out >= your min value (assuming you started at 0 and …
14
votes
8answers
3k 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
…
14
votes
17answers
4k views
Forward declaring an enum in c++
Hi guys,
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 …
14
votes
10answers
2k 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.
