Is there a way to identify that a given object is an Enumeration value?

x.isInstanceOf[Enumeration.$Value] doesn't seem to work, and from what I understand of path-dependent types, shouldn't.

I'd like to write a function that given any Enumeration value, returns its id. Alternatively, an implicit that converts the Enumeration to Int would also be great.

link|improve this question

feedback

1 Answer

up vote 9 down vote accepted

x.isInstanceOf[Enumeration#Value] works for me. From the specification, Section 3.2.2 "Type Projection".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.