Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Riina Antikainen / 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
  • CardTextStyle.java
  • Liv Haapala's avatar
    Data for CardTemplate · 087d437b
    Liv Haapala committed May 19, 2014
    087d437b Browse Files
CardTextStyle.java 177 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12
package fi.codecrew.moya.enums;

public enum CardTextStyle {
	BOLD,
	ITALIC,
	PLAIN,
	BOLDITALIC;

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