com.j256.ormlite.field
Annotation Type DatabaseFieldId


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 DatabaseFieldId


Optional Element Summary
 boolean allowGeneratedIdInsert
          Deprecated.  
 boolean generatedId
          Deprecated.  
 String generatedIdSequence
          Deprecated.  
 boolean id
          Deprecated.  
 

id

public abstract boolean id
Deprecated. 
See Also:
DatabaseField.id()
Default:
false

generatedId

public abstract boolean generatedId
Deprecated. 
See Also:
DatabaseField.generatedId()
Default:
false

generatedIdSequence

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

allowGeneratedIdInsert

public abstract boolean allowGeneratedIdInsert
Deprecated. 
See Also:
DatabaseField.allowGeneratedIdInsert()
Default:
false


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