0
votes
3answers
35 views
Adding an enum as a class property in HBM.
I am trying to create a class in HBM file which contains an Enum as a field.
The HBM is similar to this:
<class name="a.b.c.myObject" table="OBJECT" >
<property name="myEnum" …
0
votes
2answers
69 views
Internal enum as a base class template parameter [C++]
Hi, in code like this:
#pragma once
#include "stdafx.h"
#include "Token.h"
//I would like this enum to be inside class Number
enum Number_enm {ZERO, ONE, TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT, …
2
votes
3answers
161 views
Mapping enum values to strings in C++
Is there a way to, at runtime, map the value of an enum to the name? (I'm building with GCC.)
I know GDB can do it and I'm willing to use something that's unportable and mucks with debug data.
…
0
votes
6answers
109 views
c++ multiple enums in one function argument using bitwise or “|”
Hi,
I recently came across some functions where you can pass multiple enums like this:
myFunction(One | Two);
Since I think this is a really elegant way I tried to implement something like that …
1
vote
2answers
72 views
Casting Enum to uint
I'm writing a function that takes an Enum and casts it to uint. From what I've seen when casting to int, you have to cast it to an object first: (int) (object) myEnumValue. If you write (int) …
0
votes
2answers
33 views
C++/CLI : Casting from unmanaged enum to managed enum
What is the correct way of casting (in C++/CLI) from a native code enum to a managed code enum which contain the same enum values? Is there any difference with using the C# way of casting like for …
3
votes
8answers
95 views
Java - Retrieving amount of types in list
I have a list. The list can contain multiple items of the same enum type.
Lets say i have an enum : TOY which has values: BALL, DOLL, PLAYSTATION. I want to know how many PLAYSTATION items are in a …
1
vote
2answers
121 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 …
1
vote
5answers
47 views
Representation of enums
How do enums work 'behind the scenes' in programming languages? I am guessing that each language has a different way of representing these datatypes.
In java you can use the == operator, for example:
…
0
votes
1answer
38 views
Using enum as a dependency property in WPF
I try to use enum type as a dependency property in my custom control, but always get an error:
public enum PriceCategories
{
First = 1,
Second = 2,
Third = 3,
…
0
votes
0answers
14 views
Make enum bindable to datagridview
Hi all
I have an object which contains a number of string properties and an enum property called CRAction.
I have another object which represents a collection of the above object.
When I bind the …
0
votes
2answers
79 views
mask in enum [C++]
Hi, I'm playing at the moment with bits and was looking at microsoft code for io states and discovered something like this:
enum _Iostate
{ // constants for stream states
_Statmask = 0x17};//What …
1
vote
6answers
190 views
Why are Java enums not clonable?
Is there any reason why enums in Java cannot be cloned?
The manual states that
This guarantees that enums are never cloned, which is necessary to preserve their "singleton" status.
But …
4
votes
3answers
78 views
enums as mini data tables
I tend to use enums to create mini data tables all over my code. I use this pattern often. Often enough that I thought I'd ask for others opinion. I'm just curious if I'm taking enums too far, or if I …
3
votes
5answers
227 views
What’s the limit to the number of members you can have in a java enum?
Assuming you have a hypothetical enum in java like this (purely for demonstration purposes, this isn't code i'm seriously expecting to use):
enum Example{
FIRST,
SECOND,
THIRD,
...
…
