name property

String get name

Implementation

String get name {
  switch (this) {
    case StampType.approved:
      return 'Approved';
    case StampType.notApproved:
      return 'NotApproved';
    case StampType.draft:
      return 'Draft';
    case StampType.final_:
      return 'Final';
    case StampType.completed:
      return 'Completed';
    case StampType.confidential:
      return 'Confidential';
    case StampType.forPublicRelease:
      return 'ForPublicRelease';
    case StampType.notForPublicRelease:
      return 'NotForPublicRelease';
    case StampType.forComment:
      return 'ForComment';
    case StampType.void_:
      return 'Void';
    case StampType.preliminaryResults:
      return 'PreliminaryResults';
    case StampType.informationOnly:
      return 'InformationOnly';
    case StampType.rejected:
      return 'Rejected';
    case StampType.accepted:
      return 'Accepted';
    case StampType.initialHere:
      return 'InitialHere';
    case StampType.signHere:
      return 'SignHere';
    case StampType.witness:
      return 'Witness';
    case StampType.asIs:
      return 'AsIs';
    case StampType.departmental:
      return 'Departmental';
    case StampType.experimental:
      return 'Experimental';
    case StampType.expired:
      return 'Expired';
    case StampType.sold:
      return 'Sold';
    case StampType.topSecret:
      return 'TopSecret';
    case StampType.revised:
      return 'Revised';
    case StampType.rejectedWithText:
      return 'RejectedWithText';
    case StampType.custom:
      return 'Custom';
  }
}