1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
sealed trait KrafsDescription
abstract class NotWorkingEnum extends Enumeration {
type ExtendedValue = Value with KrafsDescription
def Enum(inDescription: String): ExtendedValue = {
new Val(nextId) with KrafsDescription {
}
}
}
abstract class WorkingEnum extends Enumeration {
type ExtendedValue = Value
def Enum(inDescription: String): ExtendedValue = {
new Val(nextId) {
}
}
}
object NotWorkingTab extends NotWorkingEnum {
val a = Enum("A")
val b = Enum("B")
}
object WorkingTab extends WorkingEnum {
val a = Enum("A")
val b = Enum("B")
}
object Test extends App {
testGris()
testWorking()
def testGris() {
val pipp = NotWorkingTab.b
pipp match {
case NotWorkingTab.a => ???
case NotWorkingTab.b =>
case _ => ???
}
}
def testWorking() {
val stuff = WorkingTab.a
stuff match {
case WorkingTab.a =>
case WorkingTab.b => ???
case _ => ???
}
}
}
|