class FieldMetaData extends AnyRef
- Source
- FieldMetaData.scala
- Alphabetic
- By Inheritance
- FieldMetaData
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new FieldMetaData(parentMetaData: PosoMetaData[_], nameOfProperty: String, fieldType: Class[_], wrappedFieldType: Class[_], customTypeFactory: Option[(AnyRef) => Product1[Any]], isOption: Boolean, getter: Option[Method], setter: Option[Method], field: Option[Field], columnAnnotation: Option[Column], isOptimisticCounter: Boolean, sampleValue: Any)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def canonicalEnumerationValueFor(id: Int): Value
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def columnAttributes: Iterable[ColumnAttribute]
- def columnName: String
The name of the database column
- def createResultSetHandler: (ResultSet, Int) => AnyRef
- Attributes
- protected
- val customTypeFactory: Option[(AnyRef) => Product1[Any]]
- def declaredAsPrimaryKeyInSchema: Boolean
When true, will cause Schema generation to declare as PrimaryKey, Note that for KeyedEntity[]s, declaredAsPrimaryKeyInSchema is always true, and the cannot be made otherwise, the inverse is not true, a field can be declared as primary key in the Shema without it being the id of a KeyedEntity[], ex.
When true, will cause Schema generation to declare as PrimaryKey, Note that for KeyedEntity[]s, declaredAsPrimaryKeyInSchema is always true, and the cannot be made otherwise, the inverse is not true, a field can be declared as primary key in the Shema without it being the id of a KeyedEntity[], ex. :
on(myTable)(t =>declare( myField.is(primaryKey) // myField doesn't need to be a KeyedEntity.id ))
on(myKeyedEntityTable)(t =>declare( id.is(autoIncremented) // omitting primaryKey here has no effect, it is equivalent as id.is(primaryKey,autoIncremented) ))
- def defaultValue: Option[ConstantTypedExpression[_, _]]
- def displayType: String
- val enumeration: Option[Enumeration]
None if this FieldMetaData is not an enumeration, Some(theParentEnumeration) otherwise
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def explicitDbTypeCast: Boolean
If explicit db type case has been requested
- def explicitDbTypeDeclaration: Option[String]
The db column type declaration overridden in the schema, if None, it means that it is the default value for the adapter (see Correspondance of field types to database column types http://squeryl.org/schema-definition.html)
- val fieldType: Class[_]
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def get(o: AnyRef): AnyRef
gets the value of the field from the object.
gets the value of the field from the object. Note that it will unwrap Option[] and return null instead of None, i.e. if converts None and Some to null and some.get respectively
- o
the object that owns the field
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getNativeJdbcValue(o: AnyRef): AnyRef
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def isAutoIncremented: Boolean
- def isCustomType: Boolean
- def isIdFieldOfKeyedEntity: Boolean
- def isInsertable: Boolean
Inserts will only set values for a column if isInsertable is true
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val isOptimisticCounter: Boolean
- val isOption: Boolean
- def isStringType: Boolean
- def isTransient: Boolean
- def isUpdatable: Boolean
Updates will only set values for a column if isUpdatable is true
- def length: Int
- returns
the length defined in org.squeryl.annotations.Column.length if it is defined, or the default length for Java primitive types. The unit of the length is dependent on the type, the convention is that numeric types have a length in byte, boolean is bits date has -1, and for string the length is in chars. double,long -> 8, float,int -> 4, byte -> 1, boolean -> 1 java.util.Date -> -1. The use of this field is to help custom schema generators select the most appropriate column type
- val nameOfProperty: String
- def nativeJdbcType: Class[_]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val parentMetaData: PosoMetaData[_]
- val resultSetHandler: (ResultSet, Int) => AnyRef
- val sampleValue: Any
- def scale: Int
- def schema: Schema
- def sequenceName: String
- def set(target: AnyRef, v: AnyRef): Unit
Sets the value 'v' to the object, the value will be converted to Some or None if the field is an Option[], (if isOption).
- def setFromResultSet(target: AnyRef, rs: ResultSet, index: Int): Unit
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- FieldMetaData → AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- val wrappedFieldType: Class[_]