toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case BehaviorEnum.dontCache:
      return 'dont-cache';
    case BehaviorEnum.cache:
      return 'cache';
  }
}