toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case SkillType.public:
      return 'PUBLIC';
    case SkillType.private:
      return 'PRIVATE';
  }
}