name method

String name()

Gets the name of the value.

Implementation

String name() {
  switch (_value) {
    case 'CHILD':
      return 'CHILD';
    case 'TABBED':
      return 'TABBED';
    case 'WINDOW':
      return 'WINDOW';
  }
  return _value.toString();
}