69 lines
2.0 KiB
Java
69 lines
2.0 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* javax.baja.sys.BFrozenEnum
|
|
* javax.baja.sys.Sys
|
|
* javax.baja.sys.Type
|
|
*/
|
|
package com.tridium.platform.ewf;
|
|
|
|
import javax.baja.sys.BFrozenEnum;
|
|
import javax.baja.sys.Sys;
|
|
import javax.baja.sys.Type;
|
|
|
|
/*
|
|
* Illegal identifiers - consider using --renameillegalidents true
|
|
*/
|
|
public final class BEwfEnableState
|
|
extends BFrozenEnum {
|
|
public static final int ENABLED = 0;
|
|
public static final int DISABLED = 1;
|
|
public static final int UNKNOWN = 2;
|
|
public static final BEwfEnableState enabled = new BEwfEnableState(0);
|
|
public static final BEwfEnableState disabled = new BEwfEnableState(1);
|
|
public static final BEwfEnableState unknown = new BEwfEnableState(2);
|
|
public static final Type TYPE;
|
|
public static final BEwfEnableState DEFAULT;
|
|
static /* synthetic */ Class class$com$tridium$platform$ewf$BEwfEnableState;
|
|
|
|
public final Type getType() {
|
|
return TYPE;
|
|
}
|
|
|
|
public static final BEwfEnableState make(int n) {
|
|
return (BEwfEnableState)enabled.getRange().get(n, false);
|
|
}
|
|
|
|
public static final BEwfEnableState make(String string) {
|
|
return (BEwfEnableState)enabled.getRange().get(string);
|
|
}
|
|
|
|
static /* synthetic */ Class class(String string, boolean bl) {
|
|
try {
|
|
Class<?> clazz = Class.forName(string);
|
|
if (!bl) {
|
|
clazz = clazz.getComponentType();
|
|
}
|
|
return clazz;
|
|
}
|
|
catch (ClassNotFoundException classNotFoundException) {
|
|
throw new NoClassDefFoundError(classNotFoundException.getMessage());
|
|
}
|
|
}
|
|
|
|
private BEwfEnableState(int n) {
|
|
super(n);
|
|
}
|
|
|
|
static {
|
|
Class clazz = class$com$tridium$platform$ewf$BEwfEnableState;
|
|
if (clazz == null) {
|
|
clazz = class$com$tridium$platform$ewf$BEwfEnableState = BEwfEnableState.class("[Lcom.tridium.platform.ewf.BEwfEnableState;", false);
|
|
}
|
|
TYPE = Sys.loadType((Class)clazz);
|
|
DEFAULT = enabled;
|
|
}
|
|
}
|
|
|