com.j256.ormlite.field
Annotation Type DatabaseFieldOther


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 DatabaseFieldOther


Optional Element Summary
 String columnDefinition
          Deprecated.  
 DataType dataType
          Deprecated.  
 String format
          Deprecated.  
 Class<? extends DataPersister> persisterClass
          Deprecated.  
 boolean throwIfNull
          Deprecated.  
 String unknownEnumName
          Deprecated.  
 boolean useGetSet
          Deprecated.  
 boolean version
          Deprecated.  
 

dataType

public abstract DataType dataType
Deprecated. 
See Also:
DatabaseField.dataType()
Default:
com.j256.ormlite.field.DataType.UNKNOWN

unknownEnumName

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

throwIfNull

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

format

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

persisterClass

public abstract Class<? extends DataPersister> persisterClass
Deprecated. 
See Also:
DatabaseField.persisterClass()
Default:
com.j256.ormlite.field.types.VoidType.class

useGetSet

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

columnDefinition

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

version

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


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