toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ConfigurationItemType.server:
      return 'SERVER';
    case ConfigurationItemType.process:
      return 'PROCESS';
    case ConfigurationItemType.connection:
      return 'CONNECTION';
    case ConfigurationItemType.application:
      return 'APPLICATION';
  }
}