2
votes
4answers
100 views
Bitflag enums in C++
Using enums for storing bitflags in C++ is a bit troublesome, since once the enum values are ORed they loose their enum-type, which causes errors without explicit casting.
The acc …
1
vote
3answers
88 views
How can I reference my Java Enum without specifying its type.
I have a class that defines its own enum like this:
public class Test
{
enum MyEnum{E1, E2};
public static void aTestMethod() {
Test2(E1); // << Gives "E1 …
2
votes
3answers
104 views
C# enum that depends upon another enum [or maybe this is more design related]
I might be going in the wrong direction, so let me try to sort out my thoughts (and hopefully get some tips from you guys):
Imagine an enum:
public enum ReportType
{
Performan …
1
vote
1answer
93 views
Java: how come this does not compile?
How come this code doesnt compile?
class A
{
class B
{
public enum Enum <-- this line
{
AD,
BC
}
}
}
Compiler reports:
enum declarations allo …
0
votes
1answer
24 views
How to set enum Type indexer in Spring.NET configuration xml?
I have this code:
public enum StateId { NotSet = 0, AL, ..., WY }
public class EnumBasedArray<I,V>:IEnumerable<V>
{
public V this[I index]
{
get { return _d …
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 …
1
vote
4answers
98 views
Using instanceof with Java Enums
I have a situation where I'm receiving an enum from an external system, and for which I need to return an enum of our own. The two enums have the exact same literal values in them: …
1
vote
1answer
18 views
The underlying connection was closed: The connection was closed unexpectedly
When working with WCF many times the exception massage doesn’t help us to solve the
problem. The above massage is usually a symptom for one of the following problems:
The return …
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
111 views
looping through enum values
Is it possible to loop through enum values in Objective-C?
2
votes
6answers
161 views
Flags, enum (C)
I'm not very used to programming with flags, but I think I just found a situation where they'd be useful:
I've got a couple of objects that register themselves as listeners to cer …
1
vote
5answers
129 views
Cannot convert type ‘System.Enum’ to int
(OK, I'll expose the depths of my ignorance here, please be gentle)
Background
I've got a method which looks (a bit) like this:
public void AddLink(Enum enumVal)
{
string i …
6
votes
2answers
116 views
Is the use of previously defined members as part of later members in an enum definition legal?
namespace ValueType {
enum Enum {
Boolean = 0,
Float = 1,
Double,
SInt = 8,
SLong,
UInt = SInt + (1 <<4),
ULong = SLong + (1 << 4)
};
}
…
1
vote
1answer
26 views
Bound value for data converter seems to be lost
I have bound a flagged enum to a bunch of checkboxes by using a value converter that works as described in the solution to this question. This works fine when I'm working with a fl …
0
votes
0answers
20 views
error in webrat
duplicate of http://stackoverflow.com/questions/1659586/error-in-webrat-installation
hai all,
i am getting an error when i am iinstalling webrat for my rails app.i want …
