A data type consisting of a set of named values called elements, members or enumerators of the type.
0
votes
0answers
10 views
Setting a class property to an Enum value
I have a abstract groovy class that I would like to have an attribute that is of type Enum. However, I'm not clear on how to get it set up.
I have This:
abstract class Person {
protected int ...
1
vote
1answer
14 views
Angular.js and ng-swith-when - emulating enum
I wanted to introduce some enum to my controller logic for some type safety, so for example I created something like this:
var app = angular.module('myApp', []);
var StateEnum = ...
0
votes
2answers
97 views
Use enum as type can be consider a good practice in C? [closed]
Consider the following example:
enum my_enum
{
ENUMERATER_1,
ENUMERATER_2,
ENUMERATER_TOTAL,
}
typedef enum my_enum my_enum_t // just if using option 2
static int ...
2
votes
1answer
25 views
How can I convert a C++ enum to ctypes.Structure using Python 2.7.2?
I have searched and searched, but I haven't found an example that does what I need to do.
I found
How can I represent an 'enum' in Python?
here on SO, but it doesn't cover ctypes.Structure.
...
1
vote
2answers
67 views
How to stop enum from going out of bounds?
I'm still learning the ropes with C# programming. I am trying to write an application to solve Knight's Tour but have run into some grief when trying to get possible future positions for the knight.
...
0
votes
1answer
16 views
java primefaces how to show enum name of int value from database on xhtml
Here is the situation and I really don't know what to do.
I want to persist months with jpa and enum where months will be persisted as corresponding int values. I read a lot of similar questions and I ...
0
votes
1answer
38 views
How to get enums from restful GET
I have a simple restful service that return a vehicle. The vehicle contains Enums, and I should get them all to my client. I need the collection of enums for POST the specific vehicle.
How is the ...
0
votes
1answer
53 views
How to avoid tight coupling using enum values in Java? [closed]
What is the best OOP practice to prevent spreading enum values handling through the code? So, adding/deleting enum values affects just few classes.
update:
Single Point Principle
From a linked page ...
1
vote
5answers
87 views
+50
Iterating over non-incremental Enum
Before you ask, I've looked and looked for this on SO, and cannot find a solid answer.
I need to be able to dynamically iterate over an enum that has non-incremental values, as an example:
typedef ...
1
vote
3answers
30 views
Using EnumSet of a enum implementing an interface
I have an interface
public interface TerminalSymbol {
// methods ...
}
an enum
// common usage enum that I need
public enum Common implements TerminalSymbol {
EPSILON;
@Override
...
0
votes
1answer
63 views
Is there any way to have gcc issue warnings for implicit enum to int conversion in C?
Is there any way to have gcc issue warnings for implicit enum to int (or vice versa) conversion in C (not C++).
I find that the implicit conversions can be a little bit sloppy, and I spend a long ...
5
votes
2answers
68 views
Strange behavior with property indexer
I discovered a strange behavior when using property indexer (C#).
Consider the following program:
public class Program
{
public static void Main(string[] args)
{
CustomMessageList ...
0
votes
1answer
20 views
C++ short enum problems with InterlockedCompareExchange16 (with VS2012) [closed]
Having referenced this question: Can an enum class be converted to the underlying type?.
In my code I have effectively:
enum class STATE : short
{
EMPTY,
PRESENT,
PARTIAL,
};
volatile ...
0
votes
0answers
28 views
Grails insert enums using sql query
I try to understand the following...
enum type in postgres db:
CREATE TYPE gender AS enum('M','W')
insert via sql query:
def map = [gender:'M', birthyear:1990]
// DOES NOT WORK
...
1
vote
1answer
23 views
C++ Enum over multiple files, or automatic unique constants over multiple files
In c++ is there any way to automatically generate constants over multiple files at compile time?
Just like how an enum has constants automatically generated in a single file, but the constants must ...
0
votes
1answer
11 views
Possible to get string value from corresponding integer value - like Enum but not Enum - used for lookup
Is it possible to get this to work?
var DaysList = {1:"monday", 2:"tuesday", 3:"wednesday"}
alert(DaysList .1);
I want to prevent using a switch case statement in order to get the value (E.g. ...
2
votes
2answers
105 views
Unable to Cast Enum to Int
I have the following code. I need it to create a List of KeyValuePair<string, string> with the name and value of each enum value in the specified enum type.
public static ...
1
vote
2answers
28 views
Haxe - sending enum as flags to a function
I'm just trying to convert my code from C# to Haxe NME. I use enums as flags.
[Flags]
enum State
{
StateOne = 1,
StateTwo = 2,
StateThree = 4
}
And use it
if ...
0
votes
1answer
24 views
How to do a double array enum lookup
I've declared an enum of id and description and double array for coordinates.
public enum Location {
GRASS(0, "Green Grass"),
CHURCH(1, "A church");
private int locationId;
public ...
0
votes
1answer
29 views
EF5 Code first enum from another assembly not being mapped
I am using EF5 CodeFirst and I have a POCO entity which uses, as one of it's columns, an enum defined in another assembly. When i try to construct my data context I get the following error:
Schema ...
0
votes
4answers
60 views
What is the best way to attach a label to an enum value
lets say I have an enum definition like so:
public enum eCommentType
{
NormalComment = 0,
OpenningComment = 1,
StartProgressCommetn = 2,
ClouserComment = 3,
...
0
votes
1answer
54 views
Map enum value robustly
I have a form where I collect data from users. When this data is collected, I pass it to various partners, however each partner has their own rules for each piece of data, so this has to be converted. ...
0
votes
0answers
29 views
switch(…) in Update() or constructor?
I'm trying to make my first real game in XNA...
I've made an Abilities class which keeps track of different abilities a monster or item can have...
I also made an enumeration of all the kinds of ...
0
votes
5answers
58 views
How to tell if an enum property has been set? C#
I have a class with an enum property like so:
public class Foo
{
public Color ColorType {get;set;}
}
public enum Color
{
Red,
Green,
}
Now this class can be initialized like so:
var ...
0
votes
0answers
31 views
How do I use neo4j Relationship types in a switch statement?
In ReqsDb.java I have:
public static enum RelTypes implements RelationshipType {
IDENTIFIES, IS_MEMBER
}
In another class I have:
ReqsDb reqsDb = new ReqsDb();
for (Relationship rel : ...
2
votes
2answers
56 views
Passing enum variable to a function
Hi I have a function below.
void turnRight(enum Direction heading, int x, int y){
if(y<=49 && heading==TORIGHT){
heading=TODOWN;
x=x+1;
}
else if(x<=49 && ...
1
vote
3answers
72 views
Different Enum method parameters
I have come across a case where I need to make a design decision (not so much for the program itself, but for learning what others do in the situation, it would be best to look at this as though it ...
-1
votes
2answers
27 views
Pulling from mySQL database. Text, Enum or Set? [closed]
If I have a row that contains a list of instruments that a tutor can teach how should I store them? If they teach more than one then it's like 'guitar', 'drums', 'piano'. Then. I am creating the ...
-3
votes
2answers
53 views
Error: enum “e_Sides” has no member “Left”
I have created an enum in GlobalGameEnums.h. I have included this header in Board.h where I have declared on my class but it won't let me use the enum values.
The GlobalGameEnums.h:
#ifdef ...
3
votes
3answers
81 views
C#, .net, general programming architecture. GetType or Enum : Which is better? [closed]
Which do you think is better..
if (thing.GetType() == typeof(thisthing))
{
//do stuff for this type of thing.
}
Or give the objects an Enum property
if ...
-3
votes
3answers
66 views
Why does Java disallow switch on static enums? [closed]
I have to work with a library that defines an enum like this:
public static enum LibVal {
VAL_1,
VAL_2,
VAL_3;
}
I get this enum as a method argument:
public void libCallback(LibVal ...
2
votes
3answers
46 views
Comparing Enum values for sorting
In a project I have an external enum (generated from a service reference).
So I cannot change the enum values.
How can I compare those enum values to each other in an effective way?
Here an example ...
2
votes
1answer
90 views
Precedence of enum names
Given the following enum:
[Flags]
public enum Intervals
{
Root = PerfectUnison,
Unison = PerfectUnison,
PerfectUnison = 1 << 0,
AugmentedUnison = MinorSecond,
MinorSecond = 1 ...
0
votes
1answer
58 views
Is an `enum` definition inside a class shared between class instances, or copied for each instance?
class MyClass
{
public:
enum ErrorCodes
{
ERR_SUCCESS = 1,
ERR_READ = 2,
ERR_WRITE = 3,
// ...
...
5
votes
1answer
76 views
Enum: Did I just do something unwanted?
I have an enum class which has several constants, and I want to add some static value FOCUSED which indicates which of the enum values has focus...
I found a way:
package messagesystem;
/**
*
* ...
0
votes
3answers
83 views
Grails how to map enum to existing enum on database
I have a given postgres db using a enum type with following values "M", "F". The value can be null. When i try to save a domainobject, i receive the errors below.
postgres enum:
CREATE TYPE ...
0
votes
0answers
32 views
Need to look up a description for an id from database; can i use struts type converter?
I have an id in the bean and mapped in orm.xml to database. For each id I have to lookup description from database and display. If I have enum values R:"RED" G:"GREEN". Struts does type conversion ...
0
votes
0answers
9 views
Enum within structure : comparison between '' and 'enum <anonymous>
typedef enum
{
var1,var2
}enum1;
typedef enum
{
var3,var4 = 8
}enum2;
struct struct1
{
enum1 e1;
enum2 e2;
};
int main()
{
struct struct1 *s1;
if (s1 -> e1 == ...
0
votes
1answer
46 views
Are enums changeable at all?
I've been working on a game, and in the game I'm a summoner that has tamed monsters (much like pokemon).
What I want to do , is have a backpack of 5 tamed monsters, of which I can spawn 1 at a time.
...
1
vote
3answers
48 views
How to get Enum object by value in C#?
I recently encountered a case when I needed to get an Enum object by value (to be saved via EF CodeFirst), and here is my Enum:
public enum ShipmentStatus {
New = 0,
Shipped = 1,
Canceled = 2
}
...
0
votes
1answer
24 views
Does position in array enumConstants from Class, correspondes to ordinal value of enum?
I designed a generic method, to read/write Set of Enum values as BigInteger
My original implementation
public static <T extends Enum<T>> Set<T> asList(BigInteger integer, ...
0
votes
1answer
50 views
IEnumerable list delplayed from enum values
I have the enum class below would like to know how i would be able to send this enum back as a list of IEnumerable so that i dont see the number but the actual name e.g. "Monday" on the list
public ...
0
votes
4answers
51 views
How do I loop through any enum to convert all possible values to string?
As title says, from this enum:
public enum DeeMacsEnum
{
Value1,
Value2,
Value3
}
I would like a List<String>. First element will have "Value1", second will be "Value2" etc.
However, I would ...
2
votes
1answer
126 views
delphi - how to get type of enum
I know how to get enum value from integer value, and I have this code
function GetEnumValue(intValue:integer):TMyType
begin
if(ordValue >= Ord(Low(TMyType)))and(ordValue <= ...
0
votes
1answer
44 views
ClassCastException when persisting enum via Hibernate
I've now wasted several hours trying to get this to work, but Hibernate still keeps me wondering what's going on there inside.
Here's what I want to do:
Simply persist a List of enums via @Enumerated ...
4
votes
2answers
62 views
good practices while using enums in java
I have a problem related with implementing something in Java and I guess Enums are a part of it (or maybe it's just me who made them a part of the problem.
So the thing is I have a model class, lets ...
0
votes
1answer
69 views
Unable to use enum in switch statement
I am attempting to use an enum in a switch case. For some reason the switch case is stating in netbeans that it is expecting an int but finding an enum. How would I go about using the enum for my ...
1
vote
4answers
75 views
Selecting ComboBox by ValueMember for Enum Proprety of Class
I have read lots of useful posts on the topic of the Winforms ComboBox ValueMember property, but none of them have answered my specific question. First, I will describe a simple example that works ...
1
vote
2answers
47 views
C#, cast variable to Enum.GetUnderlyingType
Suppose I have enum, which underlying type is byte:
enum EmpType : byte
{
Manager = 1,
Worker = 2,
}
Can I cast some int literal to underlying type of this enum(byte in this case) ?
...
0
votes
0answers
29 views
Mapping an Enum with Flags using NHibernate to varchar column
I have this enumeration in c#:
[Flags]
public enum MyEnum
{
One,
Two,
Three,
Four
}
and I'm trying to figure out if I can persist it into the database, via NHibernate using an ...





