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

com.infomaximum.database.anotation.Field Maven / Gradle / Ivy

The newest version!
package com.infomaximum.database.anotation;

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

import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * Created by user on 19.04.2017.
 */
@Target({})
@Retention(RUNTIME)
public @interface Field {

    int number();
    String name();
    Class type();
    @Deprecated
    Class packerType() default Class.class;

    Class foreignDependency() default Class.class;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy