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
  • Tuukka Kivilahti's avatar
    moar of info · 1aa69f6c
    Tuukka Kivilahti committed Jun 03, 2014
    1aa69f6c
CardState.java 319 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
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,
	DELIVERED;

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