toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case DriveCacheType.none:
      return 'NONE';
    case DriveCacheType.read:
      return 'READ';
  }
}