The process of enumerating values, for example from some collection.

learn more… | top users | synonyms

2
votes
1answer
47 views

Need help making a enumerator for a linked list in c#

I am trying to take a custom made linked list class I made and make an enumerator to use with it in one of my C# programs. I don't want to show too much of my code, so hopefully this is enough. I'm ...
0
votes
2answers
44 views

How to assign duplicate id's to Enumeration values?

I am converting the following code in C++ to Scala : enum Value{ a = 0 , b = 0 , c = 12 , d = 13} and I have implemented in following way : object Value extends Enumeration { val a = Value(0) ...
0
votes
1answer
36 views

how can I initialize an enum from an Int or Byte?

I have an enum like this: object Ops extends Enumeration { val one = Value(0x01) val two = Value(0x02) val three = Value(0x03) val four = Value(0x04) } I want to say Byte someByte = ...
1
vote
2answers
40 views

How to model an enumeration where one constant “behaves” differently?

I have a status label which shows a message with a colored border according to the current status. The message itself can vary (that is there can be multiple messages to ERROR) but the CLEAR status is ...
2
votes
2answers
33 views

Ruby Enumerable Collect Array still showing at end of list

I'm using Ruby enumerable to create an array of from another model. The method "companiesattending" class Conference < ActiveRecord::Base has_many :accountconferences has_many :accounts, ...
0
votes
3answers
36 views

Build an array using inject

I'm trying to build an array using inject. I expect consents to be an array of ParticipantConsent objects. Each ParticipantConsent object can :have_many ParticipantConsentSample objects. I expect ...
1
vote
1answer
138 views

Compare month of year enum with datetime month

I have enum: public enum MonthsOfTheYear { January = 1, February = 2, March = 4, April = 8, May = 16, June = 32, July = 64, August = 128, September = 256, ...
3
votes
3answers
61 views

When and how should I use enumeration classes rather than enums?

A developer at work recently started using a class pattern instead of enums in places where enums would usually fit. Instead, he uses something similar to that below: internal class Suit { public ...
2
votes
3answers
47 views

Enumeration vs Indexing vs Iteration

I've been reading Eric Lippert's blog for a while now (it's excellent, you should check it out) and In the comments of one of his posts, he mentions that he had no intention indexing a sequence of ...
1
vote
2answers
57 views

a faster way to mutate an Array of NSMutableDictionaries

based on the fact that you cannot edit mutable Collections while enumerating them, this is the best solution i could come up with to edit a Array of NSMutableDictionaries: __block NSMutableDictionary ...
1
vote
6answers
69 views

Why is list.remove only removing every second item?

In my Python 2.7.2 IDLE interpreter: >>> mylist = [1, 2, 3, 4, 5] >>> for item in mylist: mylist.remove(item) >>> mylist [2, 4] Why?
2
votes
3answers
44 views

multi-column factorize in pandas

The pandas factorize function assigns each unique value in a series to a sequential, 0-based index, and calculates which index each series entry belongs to. I'd like to accomplish the equivalent of ...
0
votes
1answer
32 views

Java sorting with collections plus manual sorting

I am writing a console application that calculates using hashtables various prices. It writes prices with a class called Priceprint. I am using hashtables for the rest of the program because order is ...
0
votes
0answers
33 views

LINQ where clause not returning results

Result set returns empty and i'm getting that error 'Enumeration yielded no results' when i use Where clause(LINQ) . What could be problem? public class Stores { [Key, ...
0
votes
1answer
28 views

How to subtract two consecutive elements in an NSArray

I have an array of meter readings in my iPhone app. I have been trying to calculate consumptions by iterating through the array and substracting two consecutive elements. I have tried it several ways ...
-1
votes
0answers
39 views

Having trouble putting concept to code

An associate and I have designed a class to abstract our mySQL handling for PHP in order to keep our setup clean and easily extended. The concept seems solid to us, but putting the rubber to the road ...
1
vote
2answers
47 views

Obj-C introspection: how to avoid casting all the time?

Hello all, I've been working on some enumeration routines in Objective-C that perform object introspection. In particular, I'm fast enumerating an NSSet and making sure that the objects therein ...
0
votes
1answer
31 views

Printing contents of a hashtable

I'm having some trouble printing the contents of a hashtable, it seems to just be printing the reference out. add to hashtable code: protected Hashtable items = new Hashtable(); public void ...
2
votes
2answers
94 views

Calculation of combinations/cartesian product of sets (without duplicates and without order restrictions)

I have a combinatorial problem that can be solved inefficiently using the cartesian product of multiple sets. Concretely, I have multiple items and multiple elements that satisfy each item. The ...
0
votes
2answers
55 views

the value of C enumeration type using typedef

Do you know the result of ALL_MODULE ? and do you know in which book describe this situation ? Thanks a lot. :) typedef enum { MODULE0, MODULE1, MODULE2 }MODULE_TAG; #define ALL_MODULE ...
1
vote
2answers
118 views

N+1 queens algorithm

I'm looking to improve the speed of my algorithm to calculate the number of solutions to the N+1 queens problem (place N+1 queens on a NxN chessboard with 1 pawn). I'm basically using brute-force ...
0
votes
1answer
68 views

Java Enumeration on Hash Table

I'm a CS student working on a project about hashtables in Java. We are creating our own hashtable and I've already completed it using linked lists to manage collisions. However my professor is ...
0
votes
0answers
57 views

Microsoft Reporting Service in visual studio 2005 printing a counter on multiple copies report, rdlc file

I have a report where there are a some lines (let's say 13) and I can get the value with RowNumber and CountRows. The report has 3 copies, so countrows is 39. Putting rownumbers in the report ...
0
votes
5answers
201 views

Which .NET collection is faster: enumerating foreach Dictionary<>.Values or List<>?

Are one of these enumerations faster than the other or about the same? (example in C#) Case 1: Dictionary<string, object> valuesDict; // valuesDict loaded with thousands of objects foreach ...
0
votes
1answer
22 views

is concurrently enumerating managed object in core data thread-safe

I need to update a value for each arranged object in Core Data, and I am currently using a loop. But I want to know if the following code is thread-safe or not, and why. ManagedObjectContext is not ...
4
votes
1answer
78 views

How do I make a streaming LINQ expression that delivers the filtered out items as well as the filtered items?

I am transforming an Excel spreadsheet into a list of "Elements" (this is a domain term). During this transformation, I need to skip the header rows and throw out malformed rows that cannot be ...
3
votes
0answers
45 views

C++ similar behavior to java.lang.Enum<E> [duplicate]

Does c++ or the STL support the function valueOf within java.lang.Enum<e> such that it enables elements = Syntax.valueOf(temp); switch(elements) {} and whereby elements is of type enum and ...
0
votes
1answer
94 views

Entity Framework enumerating SqlQuery result

I have strange error while I am trying to view results of SqlQuery: var sql = "SELECT @someParam"; var someParamSqlParameter = new SqlParameter("someParam", "Some Value"); var result = ...
0
votes
1answer
50 views

How would you implement this Java enum class in Ruby? [duplicate]

I have the following code from a Java class: enum TokenType { CHR("[a-z]"), INTEGER("[0-9]"), OP_EQUALS("\\="), OP_PLUS ("\\+"), OP_MINUS("\\-"), OP_MULTIPLY("\\*"), OP_DIVIDE("\\/"), ...
-1
votes
1answer
81 views

break iteration of photos ALAssetsLibrary

How do I break through the enumeration going on for ALAssetsLibrary enumerateAssets method with a boolean set. Can I just get out of the loop? CODE: [self.library ...
14
votes
5answers
346 views

What is the difference between a Java enum and a class with private constructor? [duplicate]

I was trying to understand how Java enum really works and I have come to the conclusion that is very similar to a normal Java class that has it's constructor declared private. I have just come to ...
0
votes
1answer
83 views

Can't enumerate controls in CodeBehind

I have defined html table not with the asp-tags one in my *.aspx page. Then I have added some asp controls into this table in its rows as: <asp:CheckBox>. I have defined a lot of checkboxes, ...
0
votes
2answers
81 views

How to use DirectoryInfo.EnumerateFiles

Based on the documentation on MSDN for DirectoryInfo.EnumerateFiles, the process involves: declaring DirectoryInfo with the path using the EnumerateFiles method to retrieve files There are ...
0
votes
0answers
13 views

Static Cast with an enumeration

I have an enumeration defined in the interface file as enum Spot={TWO,THREE,FOUR,FIVE,SIX,SEVEN,EIGHT,NINE,TEN,JACK,QUEEN,KING,ACE}; My goal is to create a blackjack simulator and I am given a ...
1
vote
0answers
74 views

asset library crashes application without any message in log

That's the log in organizer ocesses Name rpages recent_max [reason] (state) MobileMail 1557 1557 ...
0
votes
0answers
111 views

How to access Enum variable in Drools drl file

I am Having a class "Employee". public Employee{ String Name; StateEnum state; getter and setter for Name.... getter and setter for StateEnum .... } Code for StateEnum is public enum StateEnum { ...
1
vote
1answer
78 views

Find Highest Value in Enum

I'm making a class for a game I'm making and cannot figure out how to return the highest 'reward' to a user: What I'm trying to get it to do is return the reward based on the player's kills. If he ...
0
votes
1answer
65 views

IEnumerable constructor overload

I have some custom list which is based on IEnumerable<T>. Now I want to overload the constructor and do some custom stuff with the initial list I get. //Constructor public ...
0
votes
0answers
89 views

WPF How to bind an enum with descriptions to a combobox

Hi I want to bind an enum with descriptions to a combobox: I got next enum: public enum ReportTemplate { [Description("Top view")] 1, [Description("Section view")] 2 } I ...
0
votes
1answer
46 views

Reverse enumerating through a random NSArray Objective C

I'm currently making an app that plays videos from an array. I've hooked the array up to a randomizer so that when the user hits a "next" button, a video from the array is selected at random. The next ...
-2
votes
4answers
71 views

Why does this enum not work?

When I compile this code, it gives me "[Error] unknown type name 'days' ". What am I doing wrong? #include <stdio.h> int main(void){ int k=0; enum days ...
-2
votes
1answer
38 views

Java - what replaced Enumeration legacy class

I have the following code: private Map<String, TestInterface> testList = new ConcurrentHashMap<String, testInterface>(); public Enumeration getTestObjects(){ return ...
2
votes
2answers
67 views

Java - going through a hash map [duplicate]

I am in the process of updating some old Java code I havent touched in a while and have a quick question about the following code snippet: private Map<String, Example> examples = new ...
1
vote
1answer
96 views

Re-Enumerating all Serial devices in java using Javax.comm

Here is the code that I am implementing for Enumeration of devices. I am able to detect and display all the Serial devices connected.But suppose I connected another device and then try to recall this ...
0
votes
2answers
78 views

Predecessor and successor of an Enumeration value in Scala

Is there a less convoluted way of finding the predecessor and successor of an enumerated value? object E extends Enumeration { val W, X, Y, Z = Value } def succ(a: E.Value) : E.Value = { val ...
3
votes
1answer
83 views

Issue using .net web service from ColdFusion

I've been running into some challenges with a web service I'm trying to use of from ColdFusion. The service (AccountsService), has a method, GetAccountLinksByUser that returns accounts associated with ...
0
votes
0answers
20 views

To have or not to have enums [duplicate]

I have data stored in database tables. With the same data I create enums. This is duplication of work and everytime we update the database table, we have to update the enums with new values. It ...
0
votes
2answers
35 views

Checking ReadKey against Enum

I have this enum for all four possible arrow key presses enum Direction{up=ConsoleKey.UpArrow, left=Consolekey.LeftArrow,...}; private ConsoleKeyInfo userSelect; private bool mQuit; I then have ...
0
votes
1answer
40 views

Dynamic enumerations in Spring, or how to keep Spring away from constructors?

Is "Dynamic enumerations" an oxymoron, like "static variables"? ;-) I've only been soaking in Spring for a short time, and I suspect I'm not thinking Spring-like yet. I would like to have a ...
2
votes
3answers
172 views

enum implementation inside interface - Java

I have a question about putting Java enum in the interface. To make it clearer, please see the following codes: public interface Thing{ public enum Number{ one(1), two(2), three(3); ...

1 2 3 4 5 14