toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case CEType.managed:
      return 'MANAGED';
    case CEType.unmanaged:
      return 'UNMANAGED';
  }
}