toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case CacheMode.localDockerLayerCache:
      return 'LOCAL_DOCKER_LAYER_CACHE';
    case CacheMode.localSourceCache:
      return 'LOCAL_SOURCE_CACHE';
    case CacheMode.localCustomCache:
      return 'LOCAL_CUSTOM_CACHE';
  }
}