toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case CachePolicyType.managed:
      return 'managed';
    case CachePolicyType.custom:
      return 'custom';
  }
}