All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fasterxml.jackson.databind.introspect.AnnotatedAndMetadata Maven / Gradle / Ivy

There is a newer version: 2.17.0
Show newest version
package com.fasterxml.jackson.databind.introspect;

/**
 * Silly little "Pair" class needed for 2-element tuples (without
 * adding dependency to one of 3rd party packages that has one).
 *
 * @since 2.13
 */
public class AnnotatedAndMetadata
{
    public final A annotated;
    public final M metadata;

    public AnnotatedAndMetadata(A ann, M md) {
        annotated = ann;
        metadata = md;
    }

    public static  AnnotatedAndMetadata of(A ann, M md) {
        return new AnnotatedAndMetadata<>(ann, md);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy