com.fasterxml.jackson.databind.introspect.AnnotatedAndMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackson-databind Show documentation
Show all versions of jackson-databind Show documentation
General data-binding functionality for Jackson: works on core streaming API
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