toValue method

String toValue()

Implementation

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