abouttreesummaryrefslogcommitdiff
path: root/srcs/juloo.keyboard2/NumberLayout.java
blob: 4fbbe58008fc94f14b1f68d8409aa389b9c9f17e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package juloo.keyboard2;

public enum NumberLayout {
  PIN,
  NUMBER,
  NORMAL;

  public static NumberLayout of_string(String name)
  {
    switch (name)
    {
      case "number": return NUMBER;
      case "normal": return NORMAL;
      case "pin": default: return PIN;
    }
  }
}