Is there any kind of enumeration that can support strings instead of numeric values?

Code:
Public Enum
  A = "A"
  B = "B"
End Enum

Hinder