toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ProjectionType.all:
      return 'ALL';
    case ProjectionType.keysOnly:
      return 'KEYS_ONLY';
    case ProjectionType.include:
      return 'INCLUDE';
  }
}