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

parquet.org.codehaus.jackson.map.annotate.JsonValueInstantiator Maven / Gradle / Ivy

There is a newer version: 3.0.0-10
Show newest version
package com.facebook.presto.hive.$internal.org.codehaus.jackson.map.annotate;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import com.facebook.presto.hive.$internal.org.codehaus.jackson.annotate.JacksonAnnotation;
import com.facebook.presto.hive.$internal.org.codehaus.jackson.map.deser.ValueInstantiator;

/**
 * Annotation that can be used to indicate a {@link ValueInstantiator} to use
 * for creating instances of specified type.
 * 
 * @since 1.9
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@JacksonAnnotation
public @interface JsonValueInstantiator
{
    /**
     * @return  {@link ValueInstantiator} to use for annotated type
     */
    public Class value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy