A data type consisting of a set of named values called elements, members or enumerators of the type.
0
votes
1answer
10 views
Breezejs Query with Filter containing enum
Prior to one of the latest releases I could use a predicate like following:
(myEntity.myEnum, '<', 100) -
this no longer works as enums are treated like strings
how do we filter on an enum then?
...
-1
votes
4answers
64 views
How do I loop through an enum in Java? [duplicate]
Let's say I have an enum like so:
public enum Numbers {
ONE("Uno "),
TWO("Dos "),
THREE("Tres ");
}
private final String spanishName;
Numbers(String spanishName) {
this.spanishName ...
1
vote
3answers
45 views
C++, class with method and enum type - can method and enum value have same names?
I have the following class:
class washm_t
{
public:
enum door_t { closed = 0, open = 1 };
private:
door_t door_state ;
public:
int open() ;
};
The problem with the class is that the ...
0
votes
5answers
75 views
Search within Enum attribute
I want to check in Enum that passed code exists in any of enum or not. Problem is my enum defined is like below with using code attribute.
public enum TestEnum
{
None,
...
0
votes
1answer
42 views
Store primitive values in an EnumMap
Why can't I create an EnumMap like this:
EnumMap<FunkyTrolls, int> amountMap;
I want to count and save the number of trolls of each type. What is a good way of doing this?
3
votes
0answers
59 views
Future-compatible enums in 2.7?
Many methods of implementing enums are shown in the answers to this question. However, PEP0435 is out now and describes how Enum and IntEnum will become official in Python 3.4.
My question is not ...
2
votes
1answer
31 views
Is it possible to hide an enum value from a PropertyGrid?
I'm working with the PropertyGrid control and using the SelectedObject property to display data within the PropertyGrid. Some of the properties in my grid are enum types. What I'd like to be able to ...
0
votes
6answers
63 views
loop over a subset of an enumeration in java
I have got an enum prepared with 9 colors. But for a given run of the program I want to loop through the n first values. How would I do this in the best way. A problem I have is that I cant compare a ...
-5
votes
1answer
51 views
Map is better or enum is better on performance grounds? [closed]
I am new to using Enum.I am using Maps since long time.
I am not to sure and not too clear about Enum performance and capabilities.
Is it something to do with the performance if i use enum?
is it more ...
1
vote
1answer
39 views
Enum with 'inherited' accessors
I'm using enums in Java that just contain constant values and using accessors to retrieve the values e.g
public enum MyConstants {
CONST0(0),
CONST1(1);
private final int code;
...
-3
votes
1answer
57 views
PHP select value not saving to MySQL [closed]
Cannot figure out why the below will save fine on my local test server, but not on my hosted. The dollar sign is the only value that will save on my hosted. All save fine on local.
For both I have
...
1
vote
1answer
86 views
C#: Create a generic method that can return an enum as List<string>
How can i create a generic method that receives an enum type and return its values and names in as a list of strings, so i could loop this list and for each iteration ill be able to print each of the ...
3
votes
3answers
47 views
Optimization done by an EnumMap/EnumSet
I recently read an article about EnumMap. It's written that "using EnumMap brings implementation specific benefits which is done for enum keys, In short EnumMap is optimized Map implementation ...
2
votes
2answers
51 views
Prepare enum list and find an enum value from List<enum>
I decided to write the below code for Access Control List permission check.
My database will return a record like EmployeeDetFeature,Create,Edit
I would like to Parse Create and add it to a Feature ...
0
votes
1answer
24 views
Create dynamic ENUM Menu Tag in JSF 1.2
I'm struggling on this problem because it destroys my modularity a bit. I'm using JSF 1.2 and facing to use an h:selectOneMenu to select one value of a given set of Enums.
e.g.
public enum State { ...
0
votes
1answer
40 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
35 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 = ...
1
vote
2answers
109 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
28 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
69 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
34 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
40 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
58 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 ...
11
votes
11answers
353 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
33 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
69 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
72 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 ...
1
vote
1answer
24 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
106 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
29 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
31 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
55 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
64 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
32 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
57 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
30 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 ...
-2
votes
3answers
67 views
Why does Java disallow switch on static enums?
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
47 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
59 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
79 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
91 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 ...




