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