com.fasterxml.jackson.jaxrs.json.Annotations.java Source code

Java tutorial

Introduction

Here is the source code for com.fasterxml.jackson.jaxrs.json.Annotations.java

Source

package com.fasterxml.jackson.jaxrs.json;

/**
 * Enumeration that defines standard annotation sets available for configuring
 * data binding aspects.
 */
public enum Annotations {
    /**
     * Standard Jackson annotations, defined in Jackson core and databind
     * packages
     */
    JACKSON,

    /**
     * Standard JAXB annotations, used in a way that approximates expected
     * definitions (since JAXB defines XML aspects, not all features map
     * well to JSON handling)
     */
    JAXB;
}