0
votes
2answers
38 views
How can I add some Enum values to a combobox
In the following example I would like to add flavours that start with "APPLE" to a ComboBox on a form. When the enums have unique values it works fine; however, in my example two …
3
votes
7answers
174 views
Casting ints to enums in C#
There is something that I cannot understand in C#. You can cast an out-of-range int into an enum and the compiler does not flinch. Imagine this enum:
enum Colour
{
Red = 1,
…
0
votes
1answer
21 views
How to count all the enums in a SQL table.
Okay so I have a database field called moderated
It is an ENUM with 3 values:
approved
denied
unmoderated
How can I write a query that counts the amount of each, so I can gener …
1
vote
3answers
59 views
advantage of creating a temporary buffer when iterating over and modifying a collection in java
I am iterating over, and modifying a map (which is created from an existing group of enum objects) like the following:
public class Dispenser {
private Map<Ingredient, Integ …
4
votes
4answers
133 views
Comparing Java enum members: == or equals() ?
I know that Java enums are compiled to classes with private constructors and a bunch of public static members. When comparing two members of a given enum, I've always used .equals( …
0
votes
8answers
126 views
What’s the best way to return the status of multiple conditions?
So I have a House class that has a method House.buy(Person p), causing the person to buy the house. I want to know if its possible for the Person to buy the House, so I also have a …
1
vote
3answers
97 views
Finding the Highest Value in an Enumeration
I'm writing a method which determines the highest value in a .NET enumeration so I can create a BitArray with one bit for each enum value:
pressedKeys = new BitArray(highestValueI …
2
votes
3answers
73 views
Enum values().length vs private field
I have enumeration like this:
public enum Configuration {
XML(1),
XSLT(10),
TXT(100),
HTML(2),
DB(20);
private final int id;
private Configuration(int id) {
this.id = id …
0
votes
4answers
58 views
Subclass check, is operator or enum check
Hi
A couple of friends was discussing the use of inheritance and how to check if a subclass is of a specific type and we decided to post it here on Stack. The debate was about if y …
1
vote
4answers
105 views
How do I sort enum members alphabetically in Java?
I have an enum class like the following:
public enum Letter {
OMEGA_LETTER("Omega"),
GAMMA_LETTER("Gamma"),
BETA_LETTER("Beta"),
ALPHA_LETTER("Alpha"),
pr …
0
votes
2answers
32 views
how to use the toString() method for multiple enum members in same class in Java
I am trying to add more user friendly descriptions for multiple enum members in the same class. Right now I just have each enum returned in lowercase:
public enum Part {
ROTOR …
0
votes
2answers
77 views
C++ enum value initialization
I have an enum declared in my code as:
enum REMOTE_CONN
{
REMOTE_CONN_DEFAULT = 0,
REMOTE_CONN_EX_MAN = 10000,
REMOTE_CONN_SD_ANNOUNCE,
REMOTE_CONN_SD_IO,
REMO …
0
votes
4answers
76 views
Using List.Find or LINQ on lists of enums in .NET 3.5
How come List.Find (and LINQ-queries on the list as well) always return the first enum element when the list does not contain the element I am searching for?
Scenario:
My enum:
…
1
vote
5answers
136 views
C++: Equivalent to “using namespace <namespace>” but for classes?
Suppose you have a class with an enum defined within it:
class MyClass {
typedef enum _MyEnum{ a } MyEnum;
}
Is there a way to access the value a from another class without ha …
0
votes
2answers
35 views
Issue getting Doxygen to document an enum in C
I have a rather odd problem with Doxygen (1.6.1 on Mac OS X Snow Leopard) in that it does not seem to document my enums no matter what I do. I am programming in C and have followed …
