getValue method

String getValue()

Converts this enum's values to String.

Implementation

String getValue() {
  switch (this) {
    case ParticipantAccess.read:
      return 'Read';
    case ParticipantAccess.readWrite:
      return 'ReadWrite';
  }
}