toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case Architecture.x86_64:
      return 'x86_64';
    case Architecture.i386:
      return 'i386';
  }
}