toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AgentStatus.online:
      return 'ONLINE';
    case AgentStatus.offline:
      return 'OFFLINE';
  }
}