Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Max Mecklin / 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
  • Antti Tönkyrä's avatar
    Merge branch 'devel' of codecrew.fi:bortal into devel · 9a83aed1
    Conflicts:
    	code/MoyaWeb/WebContent/useradmin/overview.xhtml
    Antti Tönkyrä committed May 11, 2013
    9a83aed1 Browse Files
CardState.java 230 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package fi.codecrew.moya.enums;

public enum CardState {
	PENDING_VALIDATION,
	REJECTED,
	VALIDATED,
	PENDING_PRINT,
	PRINTING_IN_PROGRESS,
	PRINTED;
	
	public String toStringLower() {
		return this.toString().toLowerCase();
	}
}