Tagged Questions
The enumerations tag has no wiki summary.
9
votes
7answers
1k views
Singular or plural for enumerations?
Do you use singular or plural for enumerations? I think i makes best sense with plural in the declaration
enum Weekdays
{
Monday,
Tuesday,
Wednesday,
Thursday,
Friday,
...
6
votes
2answers
116 views
Is there a way to iterate and reflect the member names and values contained in enumerations?
Let's say I have the following enum:
public enum Colors
{
White = 10,
Black = 20,
Red = 30,
Blue = 40
}
I'm wondering if there is a way to iterate through all the members of Colors ...
5
votes
2answers
42 views
Setting values of enumerations, and parsing string to get an enum
My enum is like this currently:
public enum Manufacturers {
Honda,
GM,
Toyota,
Ferrari
}
I need to create a Hashmap so I plan on doing this, is this correct?
Manufacturers mfg = ...
5
votes
2answers
92 views
Java enumerations support methods? But not in c#?
I'm looking at this code of the correct way to do a singleton in java: Efficient way to implement singleton pattern in Java
I'm a little confused, how do you add a method to a enumeration?
public ...
4
votes
2answers
238 views
Should I store my Enums at database level or in the application logic (.NET)?
I have a table, lets call it Objects. It has a predefined set of records looking like this:
ObjectId ObjectName
1 Salmon
2 Trout
3 Seabass
4 Shark
Etc..
So, this I ...
3
votes
1answer
521 views
Referring to a Enumeration Value type in a method signature
I would like to add a method to scala.Enumeration. My first approach was to try to extend it, but was bitten by this. My second approach was to try to define a method, and pass in the Enumeration - ...
2
votes
3answers
31 views
BitArray returns bits the wrong way around?
This code:
BitArray bits = new BitArray(new byte[] { 7 });
foreach (bool bit in bits)
{
Console.WriteLine(bit ? 1 : 0);
}
Gives me the following output:
11100000
Shouldn't it be the other ...
2
votes
1answer
57 views
Converting a string array to one enumeration in C#
I have an enumeration with [Flag] attribute set on it.
[Flags]
public enum PageTags { IsBlog = 2, HasAnalytics = 4, AppearsInSitemap = 8 }
Now, from an XML file, I get a string representation of ...
2
votes
3answers
81 views
I am confused with Enumerations
If enums are used from jdk1.5 onwards , what was the use of java.util.Enumeration interface
before jdk1.5 ? Can anybody help me explore this with an example please ?
1
vote
1answer
91 views
Problem writing recursive enumeration function in Scheme
I'm writing a recursive enumeration function, and I'm having a simple error somewhere.
Here's what should happen:
(enum 1 0.5 2.5)
> (1.0 1.5 2.0 2.5)
Here's the code:
(define enum
...
1
vote
2answers
92 views
Iterate through saved values of Bitwise Enumeration
I'm using a Bitwise Enum as a Datasource for a repeater control in which each line has a checkbox. When the user saves data, enum values corresponding to the checked boxes are saved into a single ...
1
vote
3answers
405 views
Listing all possible values for SOAP enumeration with Python SUDS
I'm connecting with a SUDS client to a SOAP Server whose wsdl contains many enumerations like the following:
</simpleType>
<simpleType name="FOOENUMERATION">
<restriction ...
1
vote
3answers
502 views
Traverse xml structure to determine if a certain text node exists
Alright I have an xml document that looks something like this:
<xml>
<list>
<partner>
<name>Some Name</name>
...
1
vote
2answers
466 views
How do I use enumerations with XML-RPC and C#?
I'm using the Cook Computing XMLRPC framework in C#. I'm calling a remote function that expects an int. I want to use an enumeration in the client code instead of just calling the function with the ...
0
votes
2answers
39 views
Setting an enum set based on a long value
I have an enumeration that I am trying to initialize from a long value that comes from the database.
public enum ArticlePermission {
NONE(0),
CAN_READ(2),
CAN_EDIT(4),
CAN_DELETE(8),
...
0
votes
4answers
128 views
Using enums to index a bit array
The application is a windows-based C# user interface for an embedded control and monitoring system.
The embedded system (written in C) maintains a table of faults which it sends to the c# ...
0
votes
1answer
99 views
wcf netdatacontractserializer exception serialising idictionary with enumeration as key
I am using the NetDataContractSerialiser with WCF. This is working well with all our types being serialised. However, a service I am calling is generating the following exception
The formatter threw ...
0
votes
3answers
208 views
Java generics for Enum types
I am trying to write a Java class, one part of which requires a mapping of the values of an unknown enum to another class. My class contains a field private Map<? extends Enum, Unit> myMap and ...
0
votes
1answer
173 views
I want to graph enumeration values (by their integer values) but have strings displayed in Silverlight Toolkit Chart control
In our application we allow users to chart enum values over time. We want the values plotted on the y-axis according to their integer values. However, we want the y-axis labelled with localized ...
0
votes
4answers
145 views
How Char By Char Traversal is possible?
When i apply IEnumerator and perform MoverNext() will it traverse like
C-Style 'a' 'p' 'p' 'l' 'e' '\o' until it finds null character?I thought it would return the entire string.How does the ...