Back to project page AndroSol.
The source code is released under:
MIT License
If you think the Android project AndroSol listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package lib.cards.models; /*w w w . j a v a 2s . c o m*/ public enum RedealsAllowed { NONE(0), ONE(1), TWO(2), THREE(3), UNLIMITED(Integer.MAX_VALUE); private final int value; public int getValue() { return value; } RedealsAllowed(int value) { this.value = value; } }