Back to project page android-appwidget-cirrus.
The source code is released under:
MIT License
If you think the Android project android-appwidget-cirrus listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* Copyright 2014 Wayne D Grant (www.waynedgrant.com) Licensed under the MIT License */ /*from ww w.jav a 2s . c om*/ package com.waynedgrant.cirrus.presentation.formatters; public enum DateFormat { YYYY_MM_DD("YYYY/MM/DD"), DD_MM_YYYY("DD/MM/YYYY"), MM_DD_YYYY("MM/DD/YYYY"); private String description; DateFormat(String description) { this.description = description; } public String toString() { return description; } }