// 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 com.fasterxml.jackson.databind.ser.impl; import com.fasterxml.jackson.databind.JavaType; import com.fasterxml.jackson.databind.JsonSerializer; import com.fasterxml.jackson.databind.util.TypeKey; // Referenced classes of package com.fasterxml.jackson.databind.ser.impl: // ReadOnlyClassToSerializerMap private static final class _type { protected final Class _class; protected final boolean _isTyped; protected final JavaType _type; public final _isTyped next; public final JsonSerializer value; public boolean matchesTyped(JavaType javatype) { return _isTyped && javatype.equals(_type); } public boolean matchesTyped(Class class1) { return _class == class1 && _isTyped; } public boolean matchesUntyped(JavaType javatype) { return !_isTyped && javatype.equals(_type); } public boolean matchesUntyped(Class class1) { return _class == class1 && !_isTyped; } public Q(Q q, TypeKey typekey, JsonSerializer jsonserializer) { next = q; value = jsonserializer; _isTyped = typekey.isTyped(); _class = typekey.getRawType(); _type = typekey.getType(); } }