Repo created
This commit is contained in:
parent
f2d952b743
commit
3ecd57d1b2
475 changed files with 37130 additions and 2 deletions
17
srcs/juloo.keyboard2/NumberLayout.java
Normal file
17
srcs/juloo.keyboard2/NumberLayout.java
Normal file
|
|
@ -0,0 +1,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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue