com.j256.ormlite.field
Annotation Type DatabaseFieldIndex


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 DatabaseFieldIndex


Optional Element Summary
 boolean index
          Deprecated.  
 String indexName
          Deprecated.  
 boolean unique
          Deprecated.  
 boolean uniqueCombo
          Deprecated.  
 boolean uniqueIndex
          Deprecated.  
 String uniqueIndexName
          Deprecated.  
 

unique

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

uniqueCombo

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

index

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

uniqueIndex

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

indexName

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

uniqueIndexName

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


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