init commit

This commit is contained in:
2023-10-16 16:40:14 +03:00
commit 4dad863370
596 changed files with 52907 additions and 0 deletions
@@ -0,0 +1,47 @@
/*
* Decompiled with CFR 0.152.
*/
package com.ea.nimble;
public enum NimbleConfiguration {
UNKNOWN,
INTEGRATION,
STAGE,
LIVE,
CUSTOMIZED;
public static NimbleConfiguration fromName(String string2) {
if (string2.equals("int")) {
return INTEGRATION;
}
if (string2.equals("stage")) {
return STAGE;
}
if (string2.equals("live")) {
return LIVE;
}
if (!string2.equals("custom")) return UNKNOWN;
return CUSTOMIZED;
}
public String toString() {
switch (this.ordinal()) {
default: {
return "unknown";
}
case 1: {
return "int";
}
case 2: {
return "stage";
}
case 3: {
return "live";
}
case 4:
}
return "custom";
}
}