51 lines
1.6 KiB
Java
51 lines
1.6 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.alarm.ui;
|
|
|
|
import javax.baja.sys.BFrozenEnum;
|
|
import javax.baja.sys.Sys;
|
|
import javax.baja.sys.Type;
|
|
|
|
public final class BTimeZoneDisplay
|
|
extends BFrozenEnum {
|
|
public static final int CONSOLE = 0;
|
|
public static final int SOURCE = 1;
|
|
public static final BTimeZoneDisplay console = new BTimeZoneDisplay(0);
|
|
public static final BTimeZoneDisplay source = new BTimeZoneDisplay(1);
|
|
public static final Type TYPE = Sys.loadType((Class)(class$com$tridium$alarm$ui$BTimeZoneDisplay == null ? (class$com$tridium$alarm$ui$BTimeZoneDisplay = BTimeZoneDisplay.class$("com.tridium.alarm.ui.BTimeZoneDisplay")) : class$com$tridium$alarm$ui$BTimeZoneDisplay));
|
|
public static final BTimeZoneDisplay DEFAULT = console;
|
|
static /* synthetic */ Class class$com$tridium$alarm$ui$BTimeZoneDisplay;
|
|
|
|
public Type getType() {
|
|
return TYPE;
|
|
}
|
|
|
|
public static BTimeZoneDisplay make(int n) {
|
|
return (BTimeZoneDisplay)console.getRange().get(n, false);
|
|
}
|
|
|
|
public static BTimeZoneDisplay make(String string) {
|
|
return (BTimeZoneDisplay)console.getRange().get(string);
|
|
}
|
|
|
|
private BTimeZoneDisplay(int n) {
|
|
super(n);
|
|
}
|
|
|
|
static /* synthetic */ Class class$(String string) {
|
|
try {
|
|
return Class.forName(string);
|
|
}
|
|
catch (ClassNotFoundException classNotFoundException) {
|
|
throw new NoClassDefFoundError(classNotFoundException.getMessage());
|
|
}
|
|
}
|
|
}
|
|
|