active questions tagged enum - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T21:43:09Zhttp://stackoverflow.com/feeds/tag/enumhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1804840/extending-enums-in-c2Extending enums in C++?cvb2009-11-26T17:11:35Z2009-11-26T21:09:33Z
<p>Is there a way in C++ to extend/"inherit" enums?</p>
<p>I.E:</p>
<pre><code>enum Enum {A,B,C};
enum EnumEx : public Enum {D,E,F};
</code></pre>
<p>or at least define a conversion between them?</p>
http://stackoverflow.com/questions/1801363/c-c-any-way-to-get-reflective-enums5C/C++: any way to get reflective enums?Koper2009-11-26T03:20:22Z2009-11-26T10:33:35Z
<p>I've encountered this situation so many times...</p>
<pre><code> enum Fruit {
Apple,
Banana,
Pear,
Tomato
};
</code></pre>
<p>Now I have <code>Fruit f; // banana</code> and I want to go from <code>f</code> to the string <code>"Banana"</code>; or I have <code>string s = "Banana"</code> and from that I want to go to <code>Banana // enum value or int</code>.</p>
<p>So far I've been doing this.. Assuming the enum is in Fruit.h:</p>
<pre><code>// Fruit.cpp
const char *Fruits[] = {
"Apple",
"Banana",
"Pear",
"Tomato",
NULL
};
</code></pre>
<p>Obviously that's a messy solution. If a developer adds a new fruit to the header and doesn't add a new entry in Fruits[] (can't blame him, they have to be in two different files!) the application goes boom.</p>
<p>Is there a simple way to do what I want, where everything is in one file? Preprocessor hacks, alien magic, anything..</p>
<p>PS: This, contrary to reflection "for everything", would be really trivial to implement in compilers. Seeing how common a problem it is (at least for me) I really can't believe there is no <code>reflective enum Fruit</code>.. Not even in C++0x.</p>
<p>PS2: I'm using C++ but I tagged this question as C as well because C has the same problem. If your solution includes C++ only things, that's ok for me.</p>
http://stackoverflow.com/questions/1771543/postgresql-updating-an-enum-type0PostgreSQL - Updating an Enum TypeIan2009-11-20T16:13:11Z2009-11-25T00:47:49Z
<p>I've got a field that is using an enumeration type. I wish to update the enum to have an additional field (I don't want to delete anything, just add a new label). What is the simplest way to do this?</p>
http://stackoverflow.com/questions/1792437/c-enums-with-flags-attribute5C# Enums with Flags Attribute SKG2009-11-24T19:39:41Z2009-11-24T20:38:44Z
<p>I was wondering if Enums with Flag attribute are mostly used for Bitwise operations why not the compilers autogenerate the values if the enum values as not defined.</p>
<p>For eg.</p>
<pre>
[Flags]
public enum MyColor
{
Yellow = 1,
Green = 2,
Red = 4,
Blue = 8
}
</pre>
<p>It would be helpful if the values 1,2,4,8 are autogenerated if they are not assigned. Would like to know your thoughts on this.</p>
http://stackoverflow.com/questions/1790078/sort-hashtable-data-in-asp-net-c0Sort Hashtable Data in ASP.NET C#Vijjendra2009-11-24T13:30:02Z2009-11-24T13:53:24Z
<p>Hi ALL,
I am binding my dropdownlist with Enum I have following enum and code for bind dropdownlist.</p>
<pre><code>public enum DignosisOrderType
{
All = 0,
General = 1,
Uveitis = 2,
Coag =3,
PreOp=4,
Tests=5,
RP =6
}
public static void BindDropDownByEnum(DropDownList dropDownList, Type enumDataSource, )
{
Hashtable htDataSource = new Hashtable();
string[] names = Enum.GetNames(enumDataSource);
Array values = Enum.GetValues(enumDataSource);
for (int i = 0; i < names.Length; i++)
htDataSource.Add(names[i], values.GetValue(i));
BindDropDown(dropDownList, htDataSource, "key", "value");
}
public static void BindDropDown(DropDownList dropDownList, object dataSource, string dataTextField, string dataValueField)
{
dropDownList.DataSource = dataSource;
dropDownList.DataTextField = dataTextField;
dropDownList.DataValueField = dataValueField;
dropDownList.DataBind();
}
</code></pre>
<p>when the Dropdownlist is bind the data is not comming in sorting order,I want dropdownlist is bind in order of Enum is created.</p>
http://stackoverflow.com/questions/1780256/boostrandom-and-enumerated-types1Boost::Random and Enumerated TypesPerson2009-11-22T22:31:19Z2009-11-23T01:36:38Z
<p>Right now I'm generating a random enumerator using boost's random library. Basically I'm using an implicit conversion to specify the random generator's distribution, getting a random number, and then casting that back to the enumerated type.</p>
<p>Ex: (minColor and maxColor are parameters of the enumerated type)</p>
<pre><code>boost::mt19937 randGen(std::time(0));
boost::uniform_int<> dist(minColor, maxColor);
boost::variate_generator< boost::mt19937&, boost::uniform_int<> >
GetRand(randGen, dist);
return static_cast<Common::Color> (GetRand());
</code></pre>
<p>I'm curious whether boost's library supports anything like creating a distribution for an enumerated type, and thus returns a randomly selected enumerator. Something like...</p>
<pre><code>boost::uniform<Common::Color> dist(minColor, maxColor);
</code></pre>
http://stackoverflow.com/questions/1766711/c-enum-declaration-inside-a-scope-that-is-a-parameter-of-a-macro0[C++] Enum declaration inside a scope that is a parameter of a macro.Jonathan2009-11-19T21:30:34Z2009-11-20T00:51:58Z
<p>Hi,</p>
<p>I am trying to create a macro that takes a scope as a parameter.<br>
I know, it is probably not a good thing etc etc.<br>
I was trying this and got the problem that preprocessor looks for commas and parentheses... the problem is with enum. </p>
<p>How would I declare a enum inside a scope that is a parameter of a macro? </p>
<p>when the compiler see the comma between enum itens, it takes it as a separator. </p>
<p>If you are curious to know why I entered into this, is because I need to register my namespaces and classes, for namespaces I need to know when they are closed, so I was thinking to create a macro that initially calls a static function that register the namespace, encapsulate its contents and finally call a static function that removes the namespace from the registry.<br>
With a macro it would be easier for the coder to do this and make sure he doesn't forget to remove the namespace in the end of the bracket. </p>
<p>Thanks,<br>
Joe</p>
<p>EDIT:</p>
<p>I want a macro that accepts a scope as parameters: </p>
<pre><code>#define MYMACRO(unkownscope) unknownscope
class MYMACRO({
// please, don't take this code seriously, it is just an example so you can understand my question
});
</code></pre>
<p>now, if I try:</p>
<pre><code>#define MYMACRO(unkownscope) unknownscope
class MYMACRO({
enum {
anything = 1,
everything = 2
};
});
</code></pre>
<p>it won't compile because of the comma inside the enum, because the compiler thinks it is a separator of the macro. It doesn't happen with commas inside parentheses, example:</p>
<pre><code> int a(){
int x = anyfunction(1, 2);
}
</code></pre>
<p>would compile normally because the comma is inside a double parentheses.</p>
<p>Sorry for not being able to explain earlier... my english is not that good and the words just keep skipping me =[</p>
<p>Ty for the answers!<br>
Joe</p>
http://stackoverflow.com/questions/1750425/passing-an-enum-value-as-a-stored-procedure-data-function-parameter-in-linq-to2Passing an enum value as a stored procedure (data function) parameter in LINQ to SQLAaron2009-11-17T17:25:16Z2009-11-18T14:22:58Z
<p>As mentioned in <a href="http://stackoverflow.com/questions/4939/linq-to-sql-strings-to-enums">this question</a>, "LINQ to SQL allows table mappings to automatically convert back and forth to Enums by specifying the type for the column - this works for strings or integers." However, I am having trouble with this when using stored procedures (instead of auto-generated SQL) to create and update entities.</p>
<p>In my database I have a table Users with a column Role of type int. I also have a stored procedure CreateUser which accepts a parameter @role of type int. I want user roles to be represented by an enum Role in my C# code. I can change the type of the Role property on the autogenerated User class from int to Role, but then the project refuses to compile because the type of the Role property doesn't match the type of the data function role parameter (corresponding to the @role parameter in my stored procedure). The data function parameter types are autogenerated by LINQ to SQL and I can't find any way to change them.</p>
<p>I'm considering leaving the Role property as an int, renaming it to something like RoleValue, making it private, and adding another public property of type Role which performs the int-enum conversion. But it seems like there ought to be a better way.</p>
http://stackoverflow.com/questions/1752194/ienumerable-extension-methods-on-an-enum1IEnumerable Extension Methods on an EnumHawker2009-11-17T22:07:31Z2009-11-17T22:41:35Z
<p>I have an enum(below) that I want to be able to use a LINQ extension method on.</p>
<pre><code>enum Suit{
Hearts = 0,
Diamonds = 1,
Clubs = 2,
Spades = 3
}
</code></pre>
<p>Enum.GetValues(...) is of return type System.Array, but I can't seem to get access to a ToList() extension or anything else of that sort.</p>
<p>I'm just looking to write something like...</p>
<pre><code>foreach(Suit s in Enum.GetValues(typeof(Suit)).Select(x=>x).Where(x=> x != param)){}
</code></pre>
<p>Is there something I'm missing, or can someone explain to me why this isn't possible?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1547784/regular-expression-substitution-for-enum-record0Regular expression substitution for ENUM recordsipwiz2009-10-10T12:08:49Z2009-11-17T11:51:32Z
<p>How do I susbtitute in matched groups from 1 regular expression into another regular expression in C#?</p>
<p>I need to process an ENUM DNS record where the first half of the record is a regular expression to apply to the lookup value and the second half is a regular expression that uses the matches from the first.</p>
<p>Example of an ENUM record for a lookup on +18001234567</p>
<pre><code>!^\+1800(.*)$!sip:1641641800\1@tollfree.sip-happens.com!
</code></pre>
<p>The separate regular expressions are delimited by the ! character and are:</p>
<pre><code>^\+1800(.*)$
sip:1641641800\1@tollfree.sip-happens.com
</code></pre>
<p>The correct result of applying the two expressions is:</p>
<p>sip:16416418001234567@tollfree.sip-happens.com</p>
<p>I can do it be iterating through the matches and using a crude string search and replace but I'm hoping there is a better way. I'm pretty sure in Perl and other languages I could do somehting like:</p>
<pre><code>"+18001234567" =~ s/^\+1800(.*)$/sip:1641641800\1@tollfree.sip-happens.com/
</code></pre>
http://stackoverflow.com/questions/1747212/finding-the-highest-value-in-an-enumeration1Finding the Highest Value in an EnumerationCygon2009-11-17T07:41:08Z2009-11-17T08:16:30Z
<p>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:</p>
<pre><code>pressedKeys = new BitArray(highestValueInEnum<Keys>());
</code></pre>
<p>I need this on two different enumerations, so I turned it into a generic method:</p>
<pre><code>/// <summary>Returns the highest value encountered in an enumeration</summary>
/// <typeparam name="EnumType">
/// Enumeration of which the highest value will be returned
/// </typeparam>
/// <returns>The highest value in the enumeration</returns>
private static int highestValueInEnum<EnumType>() {
int[] values = (int[])Enum.GetValues(typeof(EnumType));
int highestValue = values[0];
for(int index = 0; index < values.Length; ++index) {
if(values[index] > highestValue) {
highestValue = values[index];
}
}
return highestValue;
}
</code></pre>
<p>As you can see, I'm casting the return value of Enum.GetValues() to int[], not to EnumType[]. This is because I can't cast EnumType (which is a generic type parameter) to int later.</p>
<p>The code works. But is it valid?
Can I always cast the return from Enum.GetValues() to int[]?</p>
http://stackoverflow.com/questions/1742129/conversion-of-enum-to-enumerable2Conversion of Enum to Enumerablegenerixs2009-11-16T13:14:29Z2009-11-16T13:22:44Z
<p>To convert Enum to Enumerable ,I use</p>
<pre><code>public enum Flags
{
Trivial=1,
Minor,
Major,
Critical
}
IEnumerable<int> n =
Enumerable.Range((int)Flags.Trivial, (int)Flags.Critical).OfType<int>();
</code></pre>
<p>Just I want to know whether it is a valid conversion or not (code is working).</p>
http://stackoverflow.com/questions/1738671/pass-enums-by-value-or-reference1Pass enums by value or reference?Guy2009-11-15T20:14:59Z2009-11-15T23:11:28Z
<p>My general rule is to pass by value for primitive types and pass by reference for objects (obviously const'd if need be). However, I'm not sure what route to take with enumerated types. I'd assume that pass by value is preferred since they are seemingly small, but I'd like to hear others thoughts.</p>
http://stackoverflow.com/questions/1738260/enum-scoping-issues1Enum scoping issues ThingTwo2009-11-15T17:56:17Z2009-11-15T19:09:57Z
<p>I try to keep things as local as possible, so I put enums at class scope, even if they are shared between two classes (I put it in the class that "goes better" with it.) This has worked out great, but I recently ran into an issue where a circular dependency will occur if I put the enum at class scope.</p>
<p>The enum is going to be a constructor argument for multiple classes, and the class it is in (and the class that makes the most sense for it to be in) includes those classes. Thus, it isn't possible to use the enum as a constructor argument for the classes included because it will result in a circular dependency.</p>
<p>Would it be better to just put this enum in its own header file, and if so, should I put all of the enums in the header file to be consistent? Are there any other solutions to this issue (that are logical)?</p>
http://stackoverflow.com/questions/1656469/bound-value-for-ivalueconverter-resets-to-default1Bound value for IValueConverter resets to defaultsohum2009-11-01T05:22:56Z2009-11-10T15:00:34Z
<p>I have bound a flagged enum to a bunch of checkboxes by using a value converter that works as described in the solution to <a href="http://stackoverflow.com/questions/1547124/wpf-combobox-listbox-with-multiselect-based-on-enum-with-flags">this question</a>. This works fine when I'm working with a flag that hasn't been set to anything.</p>
<p>However, in the non-trivial use case that the flag is actually set to some data, on load the checkboxes are bound correctly to the enum field. However, when I check/uncheck the box, it seems this binding has been lost.</p>
<p>For example, my enum and value converters are as follows:</p>
<pre><code>[Flags]
enum Fruits : int { Apple = 1, Orange = 2, Peach = 4, None = 0 };
public Converter : IValueConverter
{
private Fruits target;
public Converter() { }
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
Fruits mask = (Fruits)parameter;
this.target = (Fruits)value;
return ((mask & this.target) != 0);
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
this.target ^= (Fruits)parameter;
return this.target;
}
}
</code></pre>
<p>My XAML (in a datagrid) is as follows:</p>
<pre><code><toolkit:DataGrid.Columns>
<toolkit:DataGridTemplateColumn Header="Fruits">
<toolkit:DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<DataTemplate.Resources>
<ui:Converter x:Key="Converter" />
</DataTemplate.Resources>
<StackPanel>
<CheckBox Content="Apple" IsChecked="{Binding Path=Fruits, Converter={StaticResource Converter}, ConverterParameter={x:Static constants:Fruits.Apple}}" />
<CheckBox Content="Orange" IsChecked="{Binding Path=Fruits, Converter={StaticResource Converter}, ConverterParameter={x:Static constants:Fruits.Orange}}" />
<CheckBox Content="Peach" IsChecked="{Binding Path=Fruits, Converter={StaticResource Converter}, ConverterParameter={x:Static constants:Fruits.Peach}}" />
</StackPanel>
</DataTemplate>
</toolkit:DataGridTemplateColumn.CellTemplate>
</toolkit:DataGridTemplateColumn>
</toolkit:DataGrid.Columns>
</code></pre>
<p>When I load the binding from the object, it goes through Convert for each item in the list (an ObservableCollection) and binds the checkboxes correctly, and stores them in the target field. However, when I check/uncheck another box, the target field is defaulted to "None" and the behavior is as if you're starting over from scratch.</p>
<p>Any help?</p>
http://stackoverflow.com/questions/1659793/error-in-webrat0error in webratbismillah khan2009-11-02T06:56:40Z2009-11-09T23:53:53Z
<blockquote>
<p>duplicate of <a href="http://stackoverflow.com/questions/1659586/error-in-webrat-installation">http://stackoverflow.com/questions/1659586/error-in-webrat-installation</a></p>
</blockquote>
<p>hai all,
i am getting an error when i am iinstalling webrat for my rails app.i want to use in my rails app cucumber, rspec,webrat to my app test.so please give me some solution to this error.</p>
<pre>
ERROR: Error installing webrat:
ERROR: Failed to build gem native extension.
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby extconf.rb
mkmf.rb can't find header files for ruby at /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/ruby.h
</pre>
<p>Gem files will remain installed in /Library/Ruby/Gems/1.8/gems/nokogiri-1.4.0 for inspection.
Results logged to /Library/Ruby/Gems/1.8/gems/nokogiri-1.4.0/ext/nokogiri/gem_make.out</p>
http://stackoverflow.com/questions/1693579/bitflag-enums-in-c2Bitflag enums in C++sold2009-11-07T16:29:52Z2009-11-07T20:52:47Z
<p>Using enums for storing bitflags in C++ is a bit troublesome, since once the enum values are ORed they loose their enum-type, which causes errors without explicit casting.</p>
<p>The accepted answer for <a href="http://stackoverflow.com/questions/199606/how-should-c-bitflag-enumerations-be-translated-into-c">this question</a> suggests overloading the <code>|</code> operator:</p>
<pre><code>FlagsSet operator|(FlagsSet a, FlagsSet b)
{
return FlagsSet(int(a) | int(b));
}
</code></pre>
<p>I'd like to know if this method has any runtime implications? </p>
http://stackoverflow.com/questions/1677151/how-to-set-enum-type-indexer-in-spring-net-configuration-xml0How to set enum Type indexer in Spring.NET configuration xml?JohnKeller2009-11-04T22:34:06Z2009-11-06T12:13:17Z
<p>I have this code:</p>
<pre><code>public enum StateId { NotSet = 0, AL, ..., WY }
public class EnumBasedArray<I,V>:IEnumerable<V>
{
public V this[I index]
{
get { return _data[index]; }
set { _data[index] = value; }
}
// other code to manage values internally
}
public class AnotherObject { ... }
public class ArrayOfAnotherObjectByStateId:EnumBasedArray<StateId, AnotherObject> {}
</code></pre>
<p>Where I have trouble is telling Spring.NET the values of each item in the StateId-indexed array via the configuration XML file.</p>
<p>In code, I'd write something like:</p>
<pre><code>var x = new ArrayOfAnotherObjectByStateId();
x[StateId.AZ] = new AnotherObject(...);
x[StateId.CA] = new AnotherObject(...);
</code></pre>
<p>How do I do this in the Spring xml?
The closest I've come is:</p>
<pre><code><object id="matrix" type="ArrayOfAnotherObjectByStateId">
<property name="[AZ]" ref="AZ.Matrix">
</object>
<object id="AZ.Matrix" type="AnotherObject" />
</code></pre>
<p>which gives me the error
"Error creating context 'spring.root': 'AZ' node cannot be resolved for the specified context"</p>
http://stackoverflow.com/questions/1677238/c-enum-that-depends-upon-another-enum-or-maybe-this-is-more-design-related2C# enum that depends upon another enum [or maybe this is more design related]JustLooking2009-11-04T22:50:46Z2009-11-05T16:28:13Z
<p>I might be going in the wrong direction, so let me try to sort out my thoughts (and hopefully get some tips from you guys):</p>
<p>Imagine an enum:</p>
<pre><code>public enum ReportType
{
Performance,
Trending,
Statistical
}
</code></pre>
<p>This enum will also be a property or paramter to the constructor of a form. The value of the ReportType will determine things like:</p>
<pre><code>a) the text displayed at the top of the form
b) Which controls are visible
c) the text for a combobox <---!!!! this is where the 2nd enum comes in
</code></pre>
<p>In regards to the 2nd enum, if it's a Performance ReportType, I would want:</p>
<pre><code>public enum PerformanceGraph
{
Bar,
Line,
Pie,
Area
}
</code></pre>
<p>if it was Trending, I would want:</p>
<pre><code>public enum TrendingGraph
{
Bar,
Line
}
</code></pre>
<p>This form is just gathering user input. I mean, I'd rather not get into some elaborate inheritance structure for a simple form. Seems like a lot of effort (I could be wrong) when I can quickly do something like:</p>
<p>(imagine this constructor)</p>
<pre><code>public ReportInputForm(ReportType RptType)
{
m_RptType = RptType;
if (RptType == ReportType.Performance)
{
this.Text = "Performance Title";
this.CheckBoxCtl.Visible = false;
this.GraphCombo.Items.AddRange(Enum.GetNames(typeof(PerformanceGraph)));
this.GraphCombo.SelectedIndex = (int)PerformanceGraph.Bar;
}
else if (RptType == ReportType.Trending)
{
// blah, blah
}
else if (RptType == ReportType.Statistical)
{
// blah, blah
}
else
{
throw new ArgumentException("Invalid ReportType enum value");
}
}
</code></pre>
<p>It starts to get hairy when you want to actually do something with the GraphCombo, because now you need to know which ReportType it is for casting purposes.</p>
<p>Also, going back to my constructor, let's say I want to send it a Graph Value so we can set the GraphCombo's SelectedIndex (this may be the value that the user last selected, as opposed to setting some type of default). Ummm ....</p>
<pre><code> public ReportInputForm(ReportType RptType, ???WhichGraphEnum???)
{
}
</code></pre>
<p>I mean, there's three graph enum's right now, because there are three ReportType's. Plus, imagine adding a few more ReportType's.</p>
<p>I suppose I can use an int/long:</p>
<pre><code> public ReportInputForm(ReportType RptType, int lastGraphType)
{
}
</code></pre>
<p>But I suppose I'm trying to be Mr. Enum here with my compile-time checking. In other-words, I can detect an error if I could use some type of enum (like so):</p>
<pre><code>ReportInputForm foo = new ReportInputForm(ReportType.Trending, GraphType.Area);
</code></pre>
<p>As opposed to:</p>
<pre><code>// Is 4 even a valid graph type for the trending report? Answer: No
ReportInputForm foo = new ReportInputForm(ReportType.Trending, 4);
</code></pre>
<p>I've rambled on enough. Maybe this is more of a design question rather than enum related. I'm just looking for some thoughts on how to approach this. Thanks!</p>
##################################################################################
##################################################################################
######################## EDIT BEGINS HERE ########################################
##################################################################################
##################################################################################
<p>This is in response to using Generics (I apologize if I'm a bit slow; Thank you Daniel for your response):</p>
<p>Here was a suggestion:</p>
<pre><code>ReportInputForm<TrendingReport> = new ReportInputForm<TrendingReport>(GraphType.Area);
</code></pre>
<p>OK, so if I'm to use Generics (and with a Form), I have to create a Type. I'm imagining something like this (we'll only expose one function, setting the title, for now):</p>
<pre><code>public abstract class ReportType
{
public abstract string GetTitle();
}
public class PerformanceReport : ReportType
{
public PerformanceReport()
{
}
public override string GetTitle()
{
return "This is my Performance title";
}
}
public class TrendingReport : ReportType
{
public TrendingReport()
{
}
public override string GetTitle()
{
return "This is my Trending title";
}
}
public partial class Form1<T> : Form
where T : ReportType, new()
{
T foo = null;
public Form1()
{
InitializeComponent();
foo = new T();
this.Text = foo.GetTitle();
}
}
</code></pre>
<p>So, now I can do something like what was suggested:</p>
<pre><code>Form1<TrendingReport> f = new Form1<TrendingReport>();
</code></pre>
<p>That's cool, and it works (my title depends on the type), but I don't think it helps my original issue. The 2nd enum.</p>
<p>If I am using a PerformanceReport, I want my GraphType enum to be:</p>
<pre><code>public enum PerformanceGraph
{
Bar,
Line,
Pie,
Area
}
</code></pre>
<p>If I am using a TrendingReport, I want my GraphType enum to be:</p>
<pre><code>public enum TrendingGraph
{
Bar,
Line
}
</code></pre>
<p>In other words, this enum is dependent upon the class (or as my original question stated, dependent upon the first enum).</p>
<p>I mean, I suppose I can put an enum, that encompasses all graph types, in the abstract class:</p>
<pre><code>public abstract class ReportType
{
public enum GraphType
{
Bar,
Line,
Pie,
Area
}
public abstract string GetTitle();
}
</code></pre>
<p>But, that defeats the purpose of my original question. Because this now becomes legal (imagine that I modified the constructor of Form1):</p>
<pre><code>Form1<TrendingReport> f = new Form1<TrendingReport>(ReportType.GraphType.Pie);
</code></pre>
<p>Remember, TrendingReport is supposed to only have Bar and Line. I'm trying to compile-time check this. I could definitely be missing something too (in regards to Generics).</p>
http://stackoverflow.com/questions/1681661/the-underlying-connection-was-closed-the-connection-was-closed-unexpectedly1The underlying connection was closed: The connection was closed unexpectedlyTaxonomist2009-11-05T16:13:57Z2009-11-05T16:16:55Z
<p>When working with WCF many times the exception massage doesn’t help us to solve the
problem. The above massage is usually a symptom for one of the following problems:</p>
<ol>
<li>The return values are bigger than the value which was defined in the config file.</li>
<li>There is a problem with the endpoint setting</li>
<li>There is a problem with serialization of the data</li>
</ol>
<p>I experienced the 3rt problem which was with enums
The problem was that the an enum was defined explicitly with values</p>
<pre><code> Public Enum FrequencyEnums
EveryTime = 1
OncePerHour = 2
OncePerDay = 3
OncePerWeek = 4
Never = 5
End Enum
</code></pre>
<p>And the private property that was using this enum was defined as follows</p>
<pre><code>Private m_sendFrequencyID As FrequencyEnums
</code></pre>
<p>Now because the enum does not have a definition of a default value and
because the property is not initialized explicitly and
because the enum value for 0 is missing from the enum and
because the default value of enum regardless of the specified options is allwayes 0
When I tried to return instance of this class to the client I got this error:
The underlying connection was closed: The connection was closed unexpectedly</p>
<p>The solution is one of the following:</p>
<ol>
<li>Define 0 value for enums or</li>
<li>Define a default value for a property from the enum values.</li>
<li>Assign initial value to the property</li>
</ol>
<p>My question is how could I have found this error with Microsoft tools and not by trial and error.</p>
http://stackoverflow.com/questions/1677037/how-can-i-reference-my-java-enum-without-specifying-its-type1How can I reference my Java Enum without specifying its type.Bill K2009-11-04T22:13:03Z2009-11-04T22:54:39Z
<p>I have a class that defines its own enum like this:</p>
<pre><code>public class Test
{
enum MyEnum{E1, E2};
public static void aTestMethod() {
Test2(E1); // << Gives "E1 cannot be resolved" in eclipse.
}
public Test2(MyEnum e) {}
}
</code></pre>
<p>If I specify MyEnum.E1 it works fine, but I'd really just like to have it as "E1". Any idea how I can accomplish this, or does it have to be defined in another file for this to work?</p>
<p>CONCLUSION:
I hadn't been able to get the syntax for the import correct. Since several answers suggested this was possible, I'm going to select the one that gave me the syntax I needed and upvote the others.</p>
<p>By the way, a REALLY STRANGE part of this (before I got the static import to work), a switch statement I'd written that used the enum did not allow the enum to be prefixed by its type--all the rest of the code required it. Hurt my head.</p>
http://stackoverflow.com/questions/1672031/java-how-come-this-does-not-compile1Java: how come this does not compile?ShaChris232009-11-04T06:35:02Z2009-11-04T06:37:40Z
<p>How come this code doesnt compile?</p>
<pre><code>class A
{
class B
{
public enum Enum <-- this line
{
AD,
BC
}
}
}
</code></pre>
<p>Compiler reports:</p>
<pre><code>enum declarations allowed only in static contexts.
</code></pre>
<p>But then when I put the Enum inside class A, everything is okay.</p>
<p>This is quite surprising. I dont think I have this problem in C++.</p>
http://stackoverflow.com/questions/1667665/using-instanceof-with-java-enums1Using instanceof with Java Enumsunknown (google)2009-11-03T14:28:41Z2009-11-03T21:18:28Z
<p>I have a situation where I'm receiving an <code>enum</code> from an external system, and for which I need to return an <code>enum</code> of our own. The two enums have the exact same literal values in them:</p>
<pre><code>// externalEnum is guaranteed not to be null
public static MyEnum enumToEnum(final Enum<? extends Enum<?>> externalEnum)
{
if( externalEnum instanceof MyEnum )
{
return (MyEnum)enumType;
}
else
{
return MyEnum.valueOf(externalEnum.name());
}
}
</code></pre>
<p>However, the compiler squeals the following:</p>
<pre>
[javac] found : java.lang.Enum<capture#117 of ? extends java.lang.Enum<?>>
[javac] required: myEnum
[javac] if( externalEnum instanceof MyEnum )
</pre>
<p>I got a version of that function that works by simply returning <code>MyEnum.valueOf(externalEnum.name())</code> - it works and that's all that matters. However, I'm baffled about the compiler error. </p>
<p>I'm trying to understand the reification process of generics in this case. An instance of <code>Enum<? extends Enum<?>></code> or simply <code>Enum<?></code> can be a <code>MyEnum</code> (given that the later can never be anything other than a subtype of the former.) </p>
<p>So the <code>instanceof</code> test should work, but there seems to be something in the generic definition of <code>Enum</code> (and perhaps the fact that Enums cannot be extended) that causes the compiler to puke with that particular statement.</p>
<p>The workaround for me is easy, but I like to understand the problems well, and any insight on this will be appreciated.</p>
<ul>
<li>Luis.</li>
</ul>
http://stackoverflow.com/questions/1662719/looping-through-enum-values1looping through enum valuesFrank2009-11-02T17:56:01Z2009-11-02T19:52:11Z
<p>Is it possible to loop through enum values in Objective-C?</p>
http://stackoverflow.com/questions/1662144/testing-a-flags-enum-value-for-a-single-value2Testing a [Flags] enum value for a single valueJon Seigel2009-11-02T16:00:18Z2009-11-02T16:06:34Z
<p>If I have an <code>enum</code> that's marked with <code>[Flags]</code>, is there a way in .NET to test a value of this type to see if it only contains a single value? I can get the result I want using bit-counting, but I'd rather use built-in functions if possible.</p>
<p>When looping through the <code>enum</code> values dynamically, <code>Enum.GetValues()</code> returns the combination flags as well. Calling that function on the <code>enum</code> in the following example returns 4 values. However, I don't want the value <em>combinations</em> included in the inner algorithm. Testing individual <code>enum</code> values for equality is out, since the <code>enum</code> could potentially contain many values, and it also requires extra maintenance when the values in the <code>enum</code> change.</p>
<pre><code>[Flags]
enum MyEnum
{
One = 1,
Two = 2,
Four = 4,
Seven = One | Two | Four,
}
void MyFunction()
{
foreach (MyEnum enumValue in Enum.GetValues(typeof(MyEnum)))
{
if (!_HasSingleValue(enumValue)) continue;
// Guaranteed that enumValue is either One, Two, or Four
}
}
private bool _HasSingleValue(MyEnum value)
{
// ???
}</code></pre>
<p><br /><br />
Related: <a href="http://stackoverflow.com/questions/527486/c-enum-isdefined-on-combined-flags">StackOverflow: Enum.IsDefined on combined flags</a></p>
http://stackoverflow.com/questions/1661913/typeofsystem-enum-isclass-false1typeof(System.Enum).IsClass == falseControlFlow2009-11-02T15:23:19Z2009-11-02T15:31:31Z
<p>Founded that:</p>
<pre><code>typeof(System.Enum).IsClass == false
</code></pre>
<p>It's become strange that <code>System.Enum</code> has also <code>.IsValueType == false</code>, but Reflector shows that it is really just an <code>abstract class</code>.</p>
<p><code>System.Enum</code> is a reference type like a <code>System.ValueType</code> and casting enumeration values to/from <code>System.Enum</code> reference caused boxing/unboxing. No surprises here.</p>
<p>But what is a reason for <code>Type</code> class not to tell truth about <code>System.Enum</code> nature?
There is no anything extraordinary with the <code>System.Enum</code> type's reflection behavior to make it looks like not a reference type.</p>
http://stackoverflow.com/questions/1659586/error-in-webrat-installation0Error in webrat installationbismillah khan2009-11-02T05:43:12Z2009-11-02T05:45:27Z
<p>I'm getting the following error when I'm trying to install webrat in my OS X, please suggest me how can i solve this problem.</p>
<p>ERROR:</p>
<pre>Error installing webrat:
ERROR: Failed to build gem native extension.
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby extconf.rb
mkmf.rb can't find header files for ruby at /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/ruby.h
Gem files will remain installed in /Library/Ruby/Gems/1.8/gems/nokogiri-1.4.0 for inspection.
Results logged to /Library/Ruby/Gems/1.8/gems/nokogiri-1.4.0/ext/nokogiri/gem_make.out
</pre>
http://stackoverflow.com/questions/1643571/cannot-convert-type-system-enum-to-int1Cannot convert type 'System.Enum' to intBenjol2009-10-29T13:03:29Z2009-10-30T12:11:13Z
<p><em>(OK, I'll expose the depths of my ignorance here, please be gentle)</em></p>
<p><strong>Background</strong></p>
<p>I've got a method which looks (a bit) like this:</p>
<pre><code>public void AddLink(Enum enumVal)
{
string identifier = m_EnumInterpreter(enumVal);
AddLink(identifier);
}
</code></pre>
<p>The EnumInterpreter is a Func<Enum, string> that is passed in when the parent class is created.</p>
<p>I'm using Enum because at this level it is 'none of my business'- I don't care which specific enum it is. The calling code just uses a (generated) enum to avoid magic strings.</p>
<p><strong>Question</strong></p>
<p>If the EnumInterpreter sends back an empty string, I'd like to throw an exception with the actual value of enumVal. I thought I would just be able to cast to int, but it the compiler won't have it. What am I doing wrong? (Please don't say 'everything').</p>
http://stackoverflow.com/questions/1631266/flags-enum-c2Flags, enum (C)quano2009-10-27T14:40:11Z2009-10-29T11:30:02Z
<p>I'm not very used to programming with flags, but I think I just found a situation where they'd be useful:</p>
<p>I've got a couple of objects that register themselves as listeners to certain events. What events they register for is dependent on a variable that is sent to them when they are constructed. I think a nice way to do this would be to send bitwise OR connected variables, like such: TAKES_DAMAGE | GRABBABLE | LIQUID, etc. Then, in the constructor, the object can check what flags are set and register it self as listener for the ones that are.</p>
<p>But this is where I get confused. Preferably, the flags would be in an enum. But that is also a problem. If we have got these flags:</p>
<pre><code>enum
{
TAKES_DAMAGE,/* (0) */
GRABBABLE, /* (1) */
LIQUID, /* (2) */
SOME_OTHER /* (3) */
};
</code></pre>
<p>Then sending the flag SOME_OTHER (3) will be the same as sending GRABBABLE | LIQUID, will it not?</p>
<p>How exactly do you deal with this stuff?</p>
http://stackoverflow.com/questions/1627479/is-the-use-of-previously-defined-members-as-part-of-later-members-in-an-enum-defi6Is the use of previously defined members as part of later members in an enum definition legal?Geoff2009-10-26T21:38:56Z2009-10-27T12:06:27Z
<pre><code>namespace ValueType {
enum Enum {
Boolean = 0,
Float = 1,
Double,
SInt = 8,
SLong,
UInt = SInt + (1 <<4),
ULong = SLong + (1 << 4)
};
}
</code></pre>