Tagged Questions

0
votes
2answers
64 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 …
0
votes
3answers
97 views

Java Enum behavior

We have the following enumeration: public enum ComponentTypes { PDIFF(301), TDIFF(302), TADJ(303); private long componentTypeId; private ComponentTypes(long componentTypeId){ …
4
votes
3answers
76 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 …
2
votes
2answers
51 views

C#: Wrapping one Enum inside another (ie. mirroring another enum/copying it…)

Here's my problem: I have an object that's referencing a DLL. I would like other objects to reference my object, without having to also include a reference to the DLL itself. This is fine for the …
1
vote
2answers
73 views

Enums in Scala with multiple constructor parameters

I am writing my first large Scala program. In the Java equivalent, I have an enum that contains labels and tooltips for my UI controls: public enum ControlText { CANCEL_BUTTON("Cancel", "Cancel the …
1
vote
2answers
16 views

Converting an Integer to Enum in PostgreSQL

I have created a custom data type enum like so: create type "bnfunctionstype" as enum ( 'normal', 'library', 'import', 'thunk', 'adjustor_thunk' ); From an external data source I get integers in the …
2
votes
3answers
52 views

primitive types enum - does it exist

I need to provide a user a list of all primitive types available and was wondering if there is an Enum in the .net library that has all primitive types, so that I don't have to build one.
3
votes
5answers
217 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, ... …
2
votes
2answers
76 views

Should I ever use Enums as discriminators?

When do Enumerations break down? To support a new feature in an existing system, I was just considering implementing some form of discriminator to an entity table in my database schema. In wanting …
0
votes
3answers
181 views

Fake enum in C#

I'm trying to use the code from this article: Creating Fake Enums, but I can't figure out why it doesn't work. This code: Console.WriteLine(FakeEnum.One.FriendlyName); …
0
votes
3answers
142 views

Convert a String to an Enum ?

Hi I'm having trouble trying to generalize a function I've written for an specific enum: public static enum InstrumentType { SPOT { public String toString() { return "MKP"; …
3
votes
2answers
125 views

C# int, Int32 and enum’s

If int is synonymous to Int32 why does enum MyEnum : Int32 { Value = 1 } ...not compile? Where as enum MyEnum : int { Value = 1 } will, even though hovering the cursor over the int word …
2
votes
4answers
99 views

How do I make a method work for any enum

I have the following code, where ApplicationType is an enum. I have the same repeated code (everything except the parameter types) on many other enums. Whats the best way to consolidate this code? …
1
vote
6answers
143 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 …
2
votes
2answers
56 views

Getting attributes of Enum’s value

Hi everyone, I would like to know if it is possible to get attributes of the enum values and not of the enum itself? For example, suppose I have the following enum: enum FunkyAttributesEnum { …

1 2 3 4 5 40 next
15 30 50 per page