CrackMe.apk

Download file
    package kotlin.reflect.jvm.internal.impl.descriptors;

/* compiled from: ClassKind.kt */
public enum ClassKind {
    CLASS,
    INTERFACE,
    ENUM_CLASS,
    ENUM_ENTRY,
    ANNOTATION_CLASS,
    OBJECT;

    public final boolean isSingleton() {
        return this == OBJECT || this == ENUM_ENTRY;
    }
}
    
Download file