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

liquibase.datatype.DataTypeInfo Maven / Gradle / Ivy

There is a newer version: 4.29.1
Show newest version
package liquibase.datatype;

import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
public @interface DataTypeInfo {
    String name();
    int minParameters();
    int maxParameters();
    String[] aliases() default {};

    String description() default "##default";
    int priority();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy