// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package org.jdeferred.android; public final class AndroidExecutionScope extends Enum { private static final AndroidExecutionScope $VALUES[]; public static final AndroidExecutionScope BACKGROUND; public static final AndroidExecutionScope UI; private AndroidExecutionScope(String s, int i) { super(s, i); } public static AndroidExecutionScope valueOf(String s) { return (AndroidExecutionScope)Enum.valueOf(org/jdeferred/android/AndroidExecutionScope, s); } public static AndroidExecutionScope[] values() { return (AndroidExecutionScope[])$VALUES.clone(); } static { BACKGROUND = new AndroidExecutionScope("BACKGROUND", 0); UI = new AndroidExecutionScope("UI", 1); $VALUES = (new AndroidExecutionScope[] { BACKGROUND, UI }); } }