1
vote
5answers
66 views
c#:How to use enum for storing string constants? [closed]
Possible Duplicate:
Enum with strings
is is possible to have string constants in enum like
enum{name1="hmmm" name2="bdidwe"}
if it is not so what is best way to do so?
I tried it …
2
votes
2answers
78 views
Passing an enum value as a stored procedure (data function) parameter in LINQ to SQL
As mentioned in this question, "LINQ to SQL allows table mappings to automatically convert back and forth to Enums by specifying the type for the column - this works for strings or integers." …
0
votes
2answers
25 views
Some thought about a PHP Enum setup
Hi all,
For a project I'm working I need to have some sort of enumaration class since the data won't be changed It's useless to store it in a database and exhaust the db-server with unnecessary …
0
votes
2answers
71 views
Encapsulating a private enum
Previously I've defined enumerated types that are intended to be private in the header file of the class.
private:
enum foo { a, b, c };
However, I don't want the details of the enum exposed …
3
votes
4answers
96 views
Java enum and additional class files
I've noticed enums introduce many additional class files (Class$1) after compilation bloating the total size. It seems to be attached to every class that even uses an enum, and these are often …
0
votes
3answers
181 views
Fake enum in C#
I'm trying to use the code from this article: Creating Fake Enums, but I can't figure out why it doesn't work.
This code:
Console.WriteLine(FakeEnum.One.FriendlyName);
…
0
votes
2answers
49 views
Design level problem: multiple enums or looping the enum in UI code in order to make visibility decision ?
Hi!, we have a debate about a BEST PRACTISE from a .NET architecture DESIGN POINT OF VIEW:
Task: How to manage role based visibility in UI with enum?
For example: I want to show all team types …
0
votes
0answers
6 views
Master data validation & enumerations
At a high level my question is like the following -
I am doing a data sync, using web services, between two different systems. To validate the mater data, I depended on creating enums and tried to …
0
votes
1answer
21 views
maximum enum usage in schema
i need to populate a table column which takes one of 30 different string values. Is it advisable to use enum here for speed up processing . Can anyone suggest better solution which is reasonably …
6
votes
8answers
242 views
C/C++: any way to get reflective enums?
I've encountered this situation so many times...
enum Fruit {
Apple,
Banana,
Pear,
Tomato
};
Now I have Fruit f; // banana and I want to go from f to the string "Banana"; or I have string …
2
votes
4answers
193 views
Extending enums in C++?
Is there a way in C++ to extend/"inherit" enums?
I.E:
enum Enum {A,B,C};
enum EnumEx : public Enum {D,E,F};
or at least define a conversion between them?
0
votes
2answers
52 views
PostgreSQL - Updating an Enum Type
I've got a field that is using an enumeration type. I wish to update the enum to have an additional field (I don't want to delete anything, just add a new label). What is the simplest way to do this?
5
votes
3answers
104 views
C# Enums with Flags Attribute
I was wondering if Enums with Flag attribute are mostly used for Bitwise operations why not the compilers autogenerate the values if the enum values as not defined.
For eg.
[Flags]
public enum …
0
votes
5answers
75 views
Sort Hashtable Data in ASP.NET C#
Hi ALL,
I am binding my dropdownlist with Enum I have following enum and code for bind dropdownlist.
public enum DignosisOrderType
{
All = 0,
General = 1,
Uveitis = 2,
…
1
vote
1answer
48 views
Boost::Random and Enumerated Types
Right now I'm generating a random enumerator using boost's random library. Basically I'm using an implicit conversion to specify the random generator's distribution, getting a random number, and then …
