2
votes
4answers
164 views
Enum with int value in Java
What's the Java equivalent of C#'s:
enum Foo
{
Bar = 0,
Baz = 1,
Fii = 10,
}
1
vote
7answers
159 views
When are two enums equal in C#?
I have created two enums and I know they are not the same but still I think it makes sense they would be equal since their string representation as well as their numeral representa …
0
votes
4answers
57 views
Two member enumeration vs. boolean value
This question has in the back of my mind for some time, sorry if it appears subjective. There are some disadvantages in using bool in public properties and constructors for data ob …
1
vote
2answers
34 views
Where to declare an enum struct?
This is just out of curiosity but when i declare an enum type, would it be better to have it within an implementation declaration or outside of it? What would be best practice? For …
2
votes
3answers
63 views
Testing a [Flags] enum value for a single value
If I have an enum that's marked with [Flags], is there a way in .NET to test a value of this type to see if it only contains a single value? I can get the result I want using bit-c …
0
votes
1answer
13 views
Who do i query values of an enum in postgresql
Hi i want to use an enum in postgresql as an alternative to making a table, because the values my never change, but i want to be able to retrieve these values for an application th …
1
vote
1answer
41 views
typeof(System.Enum).IsClass == false
Founded that:
typeof(System.Enum).IsClass == false
It's become strange that System.Enum has also .IsValueType == false, but Reflector shows that it is really just an abstract cl …
1
vote
3answers
31 views
hibernate - How to annotate a property as enum with a field
How do I map an enum with a field in it?
public enum MyEnum{
HIGHSCHOOL ("H"), COLLEGE("C")
private int value;
public MyEnum getInstance(String value){...}
}
@Entity
public class …
1
vote
5answers
121 views
How to write cleaner code while instantiating an object with enumerations without using keyword?
Hi all,
I recently created a class which has a constructor taking 3 enumerations as arguments. These enumerations are defined in the object itself as ObjectEnum and AnotherObjectE …
1
vote
4answers
119 views
Extending Enum in C#
Hi,
I was wondering whether or not I can extend the Enum type in C# to implement my custom Enum.GetValues(type) and call it like Enum.GetMyCustomValues(type)
I am trying to imple …
1
vote
2answers
16 views
accessing enums in a COM object [jscript]
How do I access an enum that is defined within a COM interface? Specifically, I've created a new instance of an iTunes.Application:
var iTunesApp = WScript.CreateObject("iTunes …
0
votes
1answer
30 views
Objective-C use typedef enum to set Class behavior, like Cocoa.
Hi
Im extending the UIButton Class to be able to set the font and color of the UINavigationBarButton ( from this code example: switch on the code )
I goes like this:
@interface …
0
votes
2answers
175 views
Iterate through items in an enumeration in Delphi
I want to iterate through the items in an enumeration.
I'd like to be able to say something like this:
type
TWeekdays = (wdMonday, wdTuesday, wdWednesday, wdThursday, wdFriday) …
2
votes
2answers
178 views
Is there C++ library to create strong Enums ?
Ideally I would like a following examples to work, but I guess some of it is not implementable in C++.
{
typedef StrongEnum<Red=0, Green=1, Blue=2> Color; // not a C++ syn …
-2
votes
4answers
81 views
Is there a way to force cast int to enum when that int does not represent a valid enum value?
enum Answer : int { Yes = 1, No = 2 }
Answer answer = (Answer)100;
It throws, but I don't want it to. How?
