How to get next( previous) Enum Value in C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T21:33:49Zhttp://stackoverflow.com/feeds/question/642542http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/642542/how-to-get-next-previous-enum-value-in-c6How to get next( previous) Enum Value in C#husayt2009-03-13T12:52:59Z2009-03-18T10:21:07Z
<p>I have got an enum which is defined like this:</p>
<pre><code>public enum eRat { A = 0, B=3, C=5, D=8 };
</code></pre>
<p>So given value <code>eRat.B</code>, I want to get the next one which is <code>eRat.C</code></p>
<p>The solution I see is (without range checking)</p>
<pre><code>Array a = Enum.GetValues(typeof(eRat));
int i=0 ;
for (i = 0; i < a.GetLength(); i++)
{
if (a.GetValue(i) == eRat.B)
break;
}
return (eRat)a.GetValue(i+1):
</code></pre>
<p>Now that is too much of action, for something that simple. Do you know any better solution?? Something like <code>eRat.B+1</code> or <code>Enum.Next(Erat.B)</code>??</p>
<p>Thanks</p>
http://stackoverflow.com/questions/642542/how-to-get-next-previous-enum-value-in-c/642569#6425690Answer by PoweRoy for How to get next( previous) Enum Value in C#PoweRoy2009-03-13T12:59:32Z2009-03-13T12:59:32Z<p>I can think of 2 things: </p>
<ul>
<li>eRat.B+3</li>
<li>
Enum.Parse(typeof(((int)eRat.B)+3)</li>
</ul>
http://stackoverflow.com/questions/642542/how-to-get-next-previous-enum-value-in-c/642574#6425740Answer by Freddy Rios for How to get next( previous) Enum Value in C#Freddy Rios2009-03-13T13:01:50Z2009-03-13T13:01:50Z<p>var next = (eRat)((int)someRat + 3);</p>
http://stackoverflow.com/questions/642542/how-to-get-next-previous-enum-value-in-c/642611#6426115Answer by Sung Meister for How to get next( previous) Enum Value in C#Sung Meister2009-03-13T13:08:31Z2009-03-13T19:57:31Z<p>Works up to "C" since there is no answer on what to return after "D".</p>
<p><strong>[update1]</strong>: Updated according to Marc Gravell's suggestion. <br /><br />
<strong>[update2]</strong>: Updated according to how husayt's wanted - return "A" for the next value of "D". <br /><br /></p>
<pre><code>public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Next enum of A = {0}", eRatEnumHelper.GetNextEnumValueOf(eRat.A));
Console.WriteLine("Next enum of B = {0}", eRatEnumHelper.GetNextEnumValueOf(eRat.B));
Console.WriteLine("Next enum of C = {0}", eRatEnumHelper.GetNextEnumValueOf(eRat.C));
}
}
public enum eRat { A = 0, B = 3, C = 5, D = 8 };
public class eRatEnumHelper
{
public static eRat GetNextEnumValueOf(eRat value)
{
return (from eRat val in Enum.GetValues(typeof (eRat))
where val > value
orderby val
select val).DefaultIfEmpty().First();
}
}
</code></pre>
<p><strong>Result</strong></p>
<blockquote>
<p>Next enum of A = B<br />
Next enum of B = C<br />
Next enum of C = D<br />
Next enum of D = A<br /></p>
</blockquote>
http://stackoverflow.com/questions/642542/how-to-get-next-previous-enum-value-in-c/642621#64262111Answer by Marc Gravell for How to get next( previous) Enum Value in C#Marc Gravell2009-03-13T13:11:15Z2009-03-13T13:11:15Z<p>Probably a bit overkill, but:</p>
<pre><code>eRat value = eRat.B;
eRat nextValue = Enum.GetValues(typeof(eRat)).Cast<eRat>()
.SkipWhile(e => e != value).Skip(1).First();
</code></pre>
<p>or if you want the first that is numerically bigger:</p>
<pre><code>eRat nextValue = Enum.GetValues(typeof(eRat)).Cast<eRat>()
.First(e => (int)e > (int)value);
</code></pre>
<p>or for the next bigger numerically (doing the sort ourselves):</p>
<pre><code>eRat nextValue = Enum.GetValues(typeof(eRat)).Cast<eRat>()
.Where(e => (int)e > (int)value).OrderBy(e => e).First();
</code></pre>
<p>Hey, with LINQ as your hammer, the world is full of nails ;-p</p>
http://stackoverflow.com/questions/642542/how-to-get-next-previous-enum-value-in-c/642623#6426233Answer by P Daddy for How to get next( previous) Enum Value in C#P Daddy2009-03-13T13:11:33Z2009-03-13T13:50:57Z<p>You could simplify it and generalize it some:</p>
<pre><code>static Enum GetNextValue(Enum e){
Array all = Enum.GetValues(e.GetType());
int i = Array.IndexOf(all, e);
if(i < 0)
throw new InvalidEnumArgumentException();
if(i == all.Length - 1)
throw new ArgumentException("No more values", "e");
return (Enum)all.GetValue(i + 1);
}
</code></pre>
<p><strong>EDIT</strong>:
Note that if your enum contains duplicate values (synonymous entries), then this (<em>or any other technique listed here</em>) will fail, given one of those values. For instance:</p>
<pre><code>enum BRUSHSTYLE{
SOLID = 0,
HOLLOW = 1,
NULL = 1,
HATCHED = 2,
PATTERN = 3,
DIBPATTERN = 5,
DIBPATTERNPT = 6,
PATTERN8X8 = 7,
DIBPATTERN8X8 = 8
}
</code></pre>
<p>Given either <code>BRUSHSTYLE.NULL</code> or <code>BRUSHSTYLE.HOLLOW</code>, the return value would be <code>BRUSHSTYLE.HOLLOW</code>.</p>
<p><leppie></p>
<blockquote>
<p>Update: a generics version:</p>
<pre><code>static T GetNextValue<T>(T e)
{
T[] all = (T[]) Enum.GetValues(typeof(T));
int i = Array.IndexOf(all, e);
if (i < 0)
throw new InvalidEnumArgumentException();
if (i == all.Length - 1)
throw new ArgumentException("No more values", "e");
return all[i + 1];
}
</code></pre>
</blockquote>
<p></leppie></p>
<p><strong>@leppie</strong>:</p>
<p>Your generic version allows one to accidentally pass a non-enum value, which will be caught only at run-time. I had originally written it as a generic, but when the compiler rejected <code>where T : Enum</code>, I took it out and realized that I wasn't gaining much from generics anyway. The only real drawback is that you have to cast the result back to your specific enum type.</p>
http://stackoverflow.com/questions/642542/how-to-get-next-previous-enum-value-in-c/642635#6426350Answer by leppie for How to get next( previous) Enum Value in C#leppie2009-03-13T13:14:19Z2009-03-13T13:14:19Z<p>I would go with Sung Meister's answer but here is an alternative:</p>
<pre><code>MyEnum initial = MyEnum.B, next;
for (int i = ((int) initial) + 1, i < int.MaxValue; i++)
{
if (Enum.IsDefined(typeof(MyEnum), (MyEnum) i))
{
next = (MyEnum) i;
break;
}
}
</code></pre>
<p>Note: many assumptions assumed :)</p>
http://stackoverflow.com/questions/642542/how-to-get-next-previous-enum-value-in-c/642701#6427017Answer by Kent Boogaart for How to get next( previous) Enum Value in C#Kent Boogaart2009-03-13T13:27:46Z2009-03-13T13:27:46Z<p>Do you <em>really</em> need to generalize this problem? Can you just do this instead?</p>
<pre><code>public void SomeMethod(MyEnum myEnum)
{
MyEnum? nextMyEnum = myEnum.Next();
if (nextMyEnum.HasValue)
{
...
}
}
public static MyEnum? Next(this MyEnum myEnum)
{
switch (myEnum)
{
case MyEnum.A:
return MyEnum.B;
case MyEnum.B:
return MyEnum.C;
case MyEnum.C:
return MyEnum.D;
default:
return null;
}
}
</code></pre>
<p>HTH,
Kent</p>
http://stackoverflow.com/questions/642542/how-to-get-next-previous-enum-value-in-c/642751#6427516Answer by Michael Meadows for How to get next( previous) Enum Value in C#Michael Meadows2009-03-13T13:39:58Z2009-03-13T19:42:21Z<p>The problem you're dealing with is because you're trying to get an enum to do something it shouldn't. They're supposed to be type safe. Assigning integral values to an enum is allowed so that you can combine them, but if you want them to represent integral values, use classes or structs. Here's a possible alternative:</p>
<pre><code>public static class eRat
{
public static readonly eRatValue A;
public static readonly eRatValue B;
public static readonly eRatValue C;
public static readonly eRatValue D;
static eRat()
{
D = new eRatValue(8, null);
C = new eRatValue(5, D);
B = new eRatValue(3, C);
A = new eRatValue(0, B);
}
#region Nested type: ERatValue
public class eRatValue
{
private readonly eRatValue next;
private readonly int value;
public eRatValue(int value, eRatValue next)
{
this.value = value;
this.next = next;
}
public int Value
{
get { return value; }
}
public eRatValue Next
{
get { return next; }
}
public static implicit operator int(eRatValue eRatValue)
{
return eRatValue.Value;
}
}
#endregion
}
</code></pre>
<p>This allows you to do this:</p>
<pre><code>int something = eRat.A + eRat.B;
</code></pre>
<p>and this</p>
<pre><code>eRat.eRatValue current = eRat.A;
while (current != null)
{
Console.WriteLine(current.Value);
current = current.Next;
}
</code></pre>
<p>You really should only be using enums when you can benefit from their type safety. If you're relying on them to represent a type, switch to constants or to classes.</p>
<p><strong>EDIT</strong></p>
<p>I would suggest you take a look at the MSDN page on <a href="http://msdn.microsoft.com/en-us/library/ms229058.aspx" rel="nofollow">Enumeration Design</a>. The first best practice is:</p>
<blockquote>
<p>Do use an enumeration to strongly type
parameters, properties, and return
values that represent sets of values.</p>
</blockquote>
<p>I try not to argue dogma, so I won't, but here's the problem you're going to face. Microsoft doesn't want you to do what you are trying to do. They explicitly ask you not to do what you are trying to do. The make it hard for you to do what you are trying to do. In order to accomplish what you are trying to do, you have to build utility code to force it to appear to work.</p>
<p>You have called your solution <em>elegant</em> more than once, and it might be if enums were designed in a different way, but since enums are what they are, your solution isn't elegant. I think that chamber music is elegant, but if the musicians didn't have the proper instruments and had to play Vivaldi with sawblades and jugs, it would no longer be elegant, regardless of how capable they were as musicians, or how good the music was on paper.</p>
http://stackoverflow.com/questions/642542/how-to-get-next-previous-enum-value-in-c/642754#6427542Answer by Greg D for How to get next( previous) Enum Value in C#Greg D2009-03-13T13:40:55Z2009-03-13T13:40:55Z<p>Are you locked into using an enum by something that you have no control over?</p>
<p>If you're not, I'd suggest using an alternative, probably <code>Dictionary<string, int> rat;</code></p>
<p>If you create a <code>Dictionary</code> and you populate it with your data, enumerating over it is somewhat simpler. Also, it's a clearer mapping of intent-- you're mapping numbers to strings with this enum and you're trying to leverage that mapping.</p>
<p>If you must use the enum, I'd suggest something else:</p>
<pre><code>var rats = new List<eRat>() {eRat.A, eRat.B, eRat.C, eRat.D};
</code></pre>
<p>As long as you're adding the values in-order and you keep it in sync, you greatly simplify the act of retrieving the next eRat.</p>
http://stackoverflow.com/questions/642542/how-to-get-next-previous-enum-value-in-c/642823#6428233Answer by Krzysztof Koźmic for How to get next( previous) Enum Value in C#Krzysztof Koźmic2009-03-13T13:54:15Z2009-03-13T16:11:06Z<p>Judging from your description, you don't really <strong>want</strong> an enum. You're stretching enum beyond its capabilities. Why not create a custom class that exposes the values you need as properties, while keeping them in OrderedDictionary.
Then getting a next/previous one would be trivial.
--update</p>
<p>If you want to enumerate differently on the collection based in the context, make that explicit part of your design.
Encapsulate the items within a class, and have few methods each returning IEnumerable where, T is your desired type.</p>
<p>For example</p>
<pre><code>IEnumerable<Foo> GetFoosByBar()
IEnumerable<Foo> GetFoosByBaz()
</code></pre>
<p>etc...</p>
http://stackoverflow.com/questions/642542/how-to-get-next-previous-enum-value-in-c/642876#6428760Answer by Gordon Mackie JoanMiro for How to get next( previous) Enum Value in C#Gordon Mackie JoanMiro2009-03-13T14:06:16Z2009-03-13T14:13:57Z<p>Seems like an abuse of the enum class to me - but this would do it (assuming that calling Next on the last value would cause wrap-around):</p>
<pre><code>public static eRat Next(this eRat target)
{
var nextValueQuery = Enum.GetValues(typeof(eRat)).Cast<eRat>().SkipWhile(e => e != target).Skip(1);
if (nextValueQuery.Count() != 0)
{
return (eRat)nextValueQuery.First();
}
else
{
return eRat.A;
}
}
</code></pre>
<p>And this would give you the previous value on the same basis:</p>
<pre><code>public static eRat Previous(this eRat target)
{
var nextValueQuery = Enum.GetValues(typeof(eRat)).Cast<eRat>().Reverse().SkipWhile(e => e != target).Skip(1);
if (nextValueQuery.Count() != 0)
{
return (eRat)nextValueQuery.First();
}
else
{
return eRat.D;
}
}
</code></pre>
http://stackoverflow.com/questions/642542/how-to-get-next-previous-enum-value-in-c/642910#6429101Answer by chaowman for How to get next( previous) Enum Value in C#chaowman2009-03-13T14:15:01Z2009-03-13T14:15:01Z<p>For simple solution, you might just extract array from enum.</p>
<pre><code>eRat[] list = (eRat[])Enum.GetValues(typeof(eRat));
</code></pre>
<p>Then you can enumerate</p>
<pre><code>foreach (eRat item in list)
//Do something
</code></pre>
<p>Or find next item</p>
<pre><code>int index = Array.IndexOf<eRat>(list, eRat.B);
eRat nextItem = list[index + 1];
</code></pre>
<p>Storing the array is better than extracting from enum each time you want next value.</p>
<p>But if you want more beautiful solution, create the class.</p>
<pre><code>public class EnumEnumerator<T> : IEnumerator<T>, IEnumerable<T> {
int _index;
T[] _list;
public EnumEnumerator() {
if (!typeof(T).IsEnum)
throw new NotSupportedException();
_list = (T[])Enum.GetValues(typeof(T));
}
public T Current {
get { return _list[_index]; }
}
public bool MoveNext() {
if (_index + 1 >= _list.Length)
return false;
_index++;
return true;
}
public bool MovePrevious() {
if (_index <= 0)
return false;
_index--;
return true;
}
public bool Seek(T item) {
int i = Array.IndexOf<T>(_list, item);
if (i >= 0) {
_index = i;
return true;
} else
return false;
}
public void Reset() {
_index = 0;
}
public IEnumerator<T> GetEnumerator() {
return ((IEnumerable<T>)_list).GetEnumerator();
}
void IDisposable.Dispose() { }
object System.Collections.IEnumerator.Current {
get { return Current; }
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() {
return _list.GetEnumerator();
}
}
</code></pre>
<p>Instantiate</p>
<pre><code>var eRatEnum = new EnumEnumerator<eRat>();
</code></pre>
<p>Iterate</p>
<pre><code>foreach (eRat item in eRatEnum)
//Do something
</code></pre>
<p>MoveNext</p>
<pre><code>eRatEnum.Seek(eRat.B);
eRatEnum.MoveNext();
eRat nextItem = eRatEnum.Current;
</code></pre>
http://stackoverflow.com/questions/642542/how-to-get-next-previous-enum-value-in-c/643438#6434381Answer by husayt for How to get next( previous) Enum Value in C#husayt2009-03-13T16:08:23Z2009-03-18T10:21:07Z<p>Thanks to everybody for your answers and feedback. I was surprised to get so many of them. Looking at them and using some of the ideas, I came up with this solution, which works best for me:</p>
<p>public static class Extensions
{</p>
<pre><code> public static T Next<T>(this T src) where T : struct
{
if (!typeof(T).IsEnum) throw new ArgumentException(String.Format("Argumnent {0} is Not an Enum",typeof(T).FullName));
T[] Arr = (T[])Enum.GetValues(src.GetType());
int j = Array.IndexOf<T>(Arr,src)+1;
return (Arr.Length==j)?Arr[0]:Arr[j];
}
}
</code></pre>
<p>The beaty of this approach, that it is simple and universal to use. Implemented as generic extension method, you can call it on any enum this way:</p>
<pre><code>return eRat.B.Next();
</code></pre>
<p>Notice, I am using generalized extension method, thus I don't need to specify type upon call, just .Next().</p>
<p>Thanks again.</p>
http://stackoverflow.com/questions/642542/how-to-get-next-previous-enum-value-in-c/643568#6435680Answer by husayt for How to get next( previous) Enum Value in C#husayt2009-03-13T16:34:07Z2009-03-13T16:42:08Z<p>From comments I had many question like: "Why would you ever want to use enum in this way." Since so many of you asked, let me give you my use case and see if you agree then:</p>
<p>I have a fixed array of items <code>int[n]</code>. Depending on the situation I want to enumerate through this array differently. So i defined: </p>
<pre><code>int[] Arr= {1,2,34,5,6,78,9,90,30};
enum eRat1 { A = 0, B=3, C=5, D=8 };
enum eRat2 { A, AA,AAA,B,BB,C,C,CC,D };
void walk(Type enumType)
{
foreach (Type t in Enum.GetValues(enumType))
{
write(t.ToString() + " = " + Arr[(int)t)];
}
}
</code></pre>
<p>and call <code>walk(typeof(eRAt1))</code> or <code>walk(typeof(eRAt2))</code></p>
<p>then i get required output</p>
<p>1) walk(typeof(eRAt1))</p>
<pre><code>A = 1
B = 5
C = 78
D = 30
</code></pre>
<p>2) <code>walk(typeof(eRAt2))</code></p>
<pre><code>A = 1
AA = 2
AAA = 34
B = 5
BB = 6
C = 78
CC = 90
D = 30
</code></pre>
<p>This is very simplified. But i hope, this explains. There are some other advantages to this, as having enum.toString(). So basically i use enums as indexers.</p>
<p>So using the solution I can do something like this now.</p>
<p>In sequence eRat1 next value to B is C, but in eRat2 it is BB.
So depending on which sequence I am interested in, I can do e.next and depending on enumType I will either get C or BB. How would one achieve that with dictionaries?</p>
<p>I think this a rather elegant use of enums.</p>