toValue method
Implementation
String toValue() {
switch (this) {
case IngestionRequestType.initialIngestion:
return 'INITIAL_INGESTION';
case IngestionRequestType.edit:
return 'EDIT';
case IngestionRequestType.incrementalRefresh:
return 'INCREMENTAL_REFRESH';
case IngestionRequestType.fullRefresh:
return 'FULL_REFRESH';
}
}