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

com.ontology2.centipede.parser.Option Maven / Gradle / Ivy

package com.ontology2.centipede.parser;

import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@Inherited
public @interface Option {
    String name() default "";
    String defaultValue() default "";
    String description();
    Class contextualConverter() default Object.class;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy