Có thể thêm mã hóa BSON cho Liệt kê. Vì vậy, quá trình chuyển đổi được thực hiện một cách minh bạch.
Đây là mã
RegisterConversionHelpers()
custom()
def custom() {
val transformer = new Transformer {
def transform(o: AnyRef): AnyRef = o match {
case e: Enumeration$Val => e.toString
case _ => o
}
}
BSON.addEncodingHook(classOf[Enumeration$Val], transformer)
}
}