toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case Transferable.transferable:
      return 'TRANSFERABLE';
    case Transferable.untransferable:
      return 'UNTRANSFERABLE';
    case Transferable.dontKnow:
      return 'DONT_KNOW';
  }
}