Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Antti Väyrynen / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • moya
  • ..
  • enums
  • CardState.java
  • Tuomas Riihimäki's avatar
    Move util project directories around.. · 247ed5cd
    Tuomas Riihimäki committed Sep 04, 2013
    247ed5cd
CardState.java 307 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package fi.codecrew.moya.enums;

public enum CardState {
	// Missing user image, template, template image
	// or other printing error.
	DATA_MISSING,

	PENDING_VALIDATION,
	REJECTED,
	VALIDATED,
	PRINTING_IN_PROGRESS,
	PRINTED;

	public String toStringLower() {
		return this.toString().toLowerCase();
	}
}