jlibs.jdbc.annotations
Annotation Type Column


@Target(value={METHOD,FIELD})
@Retention(value=SOURCE)
public @interface Column

Author:
Santhosh Kumar T

Optional Element Summary
 boolean auto
           
 String name
          Name of the table column.
 boolean nativeType
           
 boolean primary
           
 

name

public abstract String name
Name of the table column. If not specified it is computed from the field/property name by converting it to lowercase and inserting underscores between words

Default:
""

primary

public abstract boolean primary
Default:
false

auto

public abstract boolean auto
Default:
false

nativeType

public abstract boolean nativeType
Default:
false


Copyright © 2016. All rights reserved.