TileKind.java :  » UnTagged » mahjongsolitaire » aga » mahjong » core » Android Open Source

Android Open Source » UnTagged » mahjongsolitaire 
mahjongsolitaire » aga » mahjong » core » TileKind.java
package aga.mahjong.core;

public enum TileKind {
  None, Dot, Character, Bamboo, Wind, Dragon, Season, Flower;

  public int getValue() {
    return this.ordinal();
  }

  public static TileKind forValue(int value) {
    return values()[value];
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.