toRelationshipType method

RelationshipType toRelationshipType()

Implementation

RelationshipType toRelationshipType() {
  switch (this) {
    case 'VALUE':
      return RelationshipType.value;
    case 'CHILD':
      return RelationshipType.child;
    case 'COMPLEX_FEATURES':
      return RelationshipType.complexFeatures;
  }
  throw Exception('$this is not known in enum RelationshipType');
}