// 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; // Referenced classes of package org.jdeferred: // Promise public static final class extends Enum { private static final RESOLVED $VALUES[]; public static final RESOLVED PENDING; public static final RESOLVED REJECTED; public static final RESOLVED RESOLVED; public static valueOf(String s) { return ()Enum.valueOf(org/jdeferred/Promise$State, s); } public static [] values() { return ([])$VALUES.clone(); } static { PENDING = new ("PENDING", 0); REJECTED = new ("REJECTED", 1); RESOLVED = new ("RESOLVED", 2); $VALUES = (new .VALUES[] { PENDING, REJECTED, RESOLVED }); } private (String s, int i) { super(s, i); } }