toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AppType.jupyterServer:
      return 'JupyterServer';
    case AppType.kernelGateway:
      return 'KernelGateway';
    case AppType.tensorBoard:
      return 'TensorBoard';
  }
}