toValue method
Implementation
String toValue() {
switch (this) {
case UpdateAgentLogLevel.none:
return 'NONE';
case UpdateAgentLogLevel.trace:
return 'TRACE';
case UpdateAgentLogLevel.debug:
return 'DEBUG';
case UpdateAgentLogLevel.verbose:
return 'VERBOSE';
case UpdateAgentLogLevel.info:
return 'INFO';
case UpdateAgentLogLevel.warn:
return 'WARN';
case UpdateAgentLogLevel.error:
return 'ERROR';
case UpdateAgentLogLevel.fatal:
return 'FATAL';
}
}