com.fasterxml.jackson.databind.BeanProperty.java Source code

Java tutorial

Introduction

Here is the source code for com.fasterxml.jackson.databind.BeanProperty.java

Source

package com.fasterxml.jackson.databind;

import com.fasterxml.jackson.databind.introspect.AnnotatedMember;
import com.fasterxml.jackson.databind.util.Annotations;

public abstract interface BeanProperty {
    public abstract AnnotatedMember getMember();

    public abstract JavaType getType();

    public static class Std implements BeanProperty {
        protected final Annotations _contextAnnotations;
        protected final AnnotatedMember _member;
        protected final String _name;
        protected final JavaType _type;

        public Std(String paramString, JavaType paramJavaType, Annotations paramAnnotations,
                AnnotatedMember paramAnnotatedMember) {
            this._name = paramString;
            this._type = paramJavaType;
            this._member = paramAnnotatedMember;
            this._contextAnnotations = paramAnnotations;
        }

        public AnnotatedMember getMember() {
            return this._member;
        }

        public JavaType getType() {
            return this._type;
        }

        public Std withType(JavaType paramJavaType) {
            return new Std(this._name, paramJavaType, this._contextAnnotations, this._member);
        }
    }
}

/* Location:           /Users/dantheman/src/fffffffffattttt/basis/classes_dex2jar.jar
 * Qualified Name:     com.fasterxml.jackson.databind.BeanProperty
 * JD-Core Version:    0.6.2
 */