Tagged Questions

9
votes
2answers
655 views

C# - are all Enum constants?

Are all Enum enumerations constants? Do they get converted to their value at compile-time, or at run-time?
8
votes
5answers
372 views

Is there a a C-like way to get item number from enum in java?

Perhap this is a simple basic question Having an enum public enum TK{ ID,GROUP,DATA,FAIL; } Can I get the order number for example ID=0, GROUP=2, DATA=3, FAIL=4 ? This is a way to ...
5
votes
3answers
154 views

Java: access to the constants in an enumeration (enum)

reading the SCJP book, I've found something like this in the chapter 1 "self-test" : enum Animals { DOG("woof"), CAT("meow"), FISH("burble"); String sound; Animals(String s) { sound = s; ...
5
votes
3answers
623 views

Why “final static int” can be used as a switch's case constant but not “final static <your enum>”

Why is this int switch valid: public class Foo { private final static int ONE = 1; private final static int TWO = 2; public static void main(String[] args) { int value = 1; ...
5
votes
1answer
100 views

How do you syncronize enums in DB with your PHP code?

A db with several hundred tables will usually have more then few enums/sets defined in it. How do you synchronize you PHP code with the enum values, to avoid using string literals in your code (which ...
5
votes
3answers
551 views

Using enum as integer constant in C#

My question is pretty simple, but I didn't find a way to implement my code the way I want it to be. So I started wondering if the code I want to implement is not good. And if it is, what's the best ...
5
votes
4answers
1k views

Should I store Enum ID/values in the database or a C# enumeration?

Say my database tables have columns like UserType, SalesType, etc. Should I have database tables with UserTypeID, userTypeName or should I just create a C# enumeration?
4
votes
9answers
606 views

Is there a reason to use enum to define a single constant in C++ code?

The typical way to define an integer constant to use inside a function is: const int NumbeOfElements = 10; the same for using within a class: class Class { ... static const int ...
3
votes
4answers
190 views

Why use constants instead of enums?

I've seen in lots and lots of Java libraries the use of lots of constants where enums could have easily been used. Even in Swing, there is a lot of code that uses constants instead of enums. Why? ...
3
votes
3answers
589 views

JAVA Constants: Enums VS Classes VS Interfaces

I have been reading a lot of posts on this site regarding the usage of constants. Question: When should I use Enums for constants, vs using classes or interfaces. I see 2 key situations I am ...
3
votes
4answers
413 views

Storing integer values as constants in Enum manner in java

I'm currently creating integer constants in the following manner. public class Constants { public static int SIGN_CREATE=0; public static int SIGN_CREATE=1; public static int HOME_SCREEN=2; public ...
3
votes
2answers
651 views

Why aren't TypeLib enums exposed as enums in Visual Basic 6.0?

I have a VB6 project that references COMSVCSLib and one of the methods makes calls to COMSVCSLib's SharedPropertyGroupManager.CreatePropertyGroup passing LockMethod and Process as parameters. Cleaned ...
3
votes
2answers
4k views

Static String constants VS enum in Java 5+

I've read that question & answers: http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java And came up with a decision that enum is better way to implement a ...
2
votes
3answers
191 views

Assigning (non)constant value to enum

I'm trying to assign a short to a enum like this:; public enum ValueRepresentation : short { ApplicationEntity = short.Parse("AE"), AgeString = short.Parse("AS") } This however, obviously, ...
2
votes
5answers
254 views

Should I use an enum or multiple const for non-sequential constants in c++?

I'm writing porting file-io set of functions from c into a c++ class. "Magic numbers" (unnamed constants) abound. The functions read a file header which has a number of specific entries whose ...
2
votes
5answers
2k 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
4answers
1k views

Storing string values as constants in the same manner as Enum

I know there is a way to make enum work for string types with conversions galore - the code doesn't look pretty. Does anyone know of any way to have something like this: public SOMESTRUCTURE ...
2
votes
7answers
845 views

.NET enumerations of symbolic constants for string values

I have a list of rather meaningless codes that I'm processing with a VB.NET Windows application. For the business logic I'm writing to process those codes, I'd like to use meaningful constants (like ...
1
vote
4answers
82 views

How search in java enum?

I have set of constants like: public static final String CONST1="abc"; public static final String CONST2="cde"; public static final String CONST3="ftr"; ................................... public ...
1
vote
3answers
59 views

Avoiding redundancy in accessing static table data for conditional programming

I've the following scenario. My application interacts with the database which contains some static tables. If I have to use that static information in the code level mostly for conditional code, what ...
1
vote
4answers
106 views

Why are constants in Java the way they are?

I have read about Java enums and use them regularly. However, I don't understand why e.g JFrame.EXIT_ON_CLOSE returns an int. Considering ...
1
vote
4answers
293 views

Numeric constants in enum (c#)

I'm creating this selectbox in a SharePoint web part and need to have a drop down with the current version so I need to use an Enum. public enum SelectVersionEnum { 2010, 2007 }; Well you can see ...
1
vote
1answer
170 views

How to create const arrays of instances of a class, within that class?

I'm creating my own PHP class. I want to have constant references within that class of instances of that class, like an enumeration. I keep getting 2 errors: 1. Constants cannot be arrays 2. parse ...
1
vote
1answer
296 views

Java - Enum with array field

I want to store a list names and individual nicknames for each name as an Enum in Java. The number of nicknames will not vary. The purpose is to be able to get a full name from a nickname. Currently I ...
1
vote
2answers
215 views

How to create a file of constants in Javascript?

Is there a way to create a file of constants in JavaScript, which I can reference and then use? What I am looking for is something like this: Constants.js: var Phones = { Nokia: 1, ...
1
vote
3answers
299 views

using switch statements with constants or enumerations? (Which is better)? C#

HI, I've got a simple question, but one that has been bugging me for a while. Question: When using switch statements in C#, is it considered better practice to use enums over constants or vice ...
1
vote
5answers
226 views

Enumeration and constants

Is there better way than declare enumeration as public enum DepthNumberSize { Bit1 = 1, Bit4 = 4, Bit8 = 8, Bit16 = 16, Bit32 = 32 } and every time when operations with related data ...
0
votes
2answers
83 views

ENUM constants questions

It was posted on this site how you could generate unique enum constants by doing the following: enum _EXAMPLE { LEFT = 'left', RIGHT = 'right' //etc }; Ignoring the issue of validity, ...
0
votes
4answers
502 views

Typed constant declaration list

I wish to create an "enum-like" list of constants with the following properties: The values of each identifier are sequential, with a few gaps. (I believe iota and the blank identifier help in this ...
0
votes
2answers
172 views

Accessing API objc constants and enums from python

I am using pyobjc to add some needed OSX functionality to some random python software. I will need to access API-defined objc-land constants from python-land. An example of such constants lies far ...