com.j256.ormlite.field
Annotation Type DatabaseFieldSimple


Deprecated. Please use just the DatabaseField annotation. This annotation was created when we found performance problems in the Android annotations. We have a work around for these annotations now that makes them adequately fast. These are causing confusion so we've decided to pull them. Sorry.

@Target(value=FIELD)
@Retention(value=RUNTIME)
@Deprecated
public @interface DatabaseFieldSimple


Optional Element Summary
 boolean canBeNull
          Deprecated.  
 String columnName
          Deprecated.  
 String defaultValue
          Deprecated.  
 int width
          Deprecated.  
 

columnName

public abstract String columnName
Deprecated. 
See Also:
DatabaseField.columnName()
Default:
""

defaultValue

public abstract String defaultValue
Deprecated. 
See Also:
DatabaseField.defaultValue()
Default:
"__ormlite__ no default value string was specified"

width

public abstract int width
Deprecated. 
See Also:
DatabaseField.width()
Default:
0

canBeNull

public abstract boolean canBeNull
Deprecated. 
See Also:
DatabaseField.canBeNull()
Default:
true


This content is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.