Class LocaleField

    • Constructor Detail

    • Method Detail

      • getFormMeta

        public FormMeta getFormMeta()
      • getDefault

        public java.util.Locale getDefault()
      • setDefault

        public LocaleField setDefault​(java.util.Locale value)
      • setIndexed

        public LocaleField setIndexed​(boolean value)
      • setUnique

        public LocaleField setUnique​(boolean value)
      • addValidator

        public LocaleField addValidator​(org.apache.wicket.validation.IValidator wicketValidator)
      • defaultSqlDataType

        public java.lang.String defaultSqlDataType()
        Description copied from class: SFieldScalar
        The default data type if not overriden by overrideSqlDataType. This is only called when the data type is actually needed by CREATE TABLE, ie if no sqlDataTypeOverride is specified.
        Overrides:
        defaultSqlDataType in class SFieldString
      • javaSqlType

        public int javaSqlType()
        Overrides:
        javaSqlType in class SFieldString
        Returns:
        int constant from java.sql.Types, used for setting sql datatype with null values
      • queryFieldValue

        public java.lang.Object queryFieldValue​(java.sql.ResultSet rs,
                                                int sqlIndex)
                                         throws java.lang.Exception
        Issues a JDBC get*() on the result set for the field and converts the database type to the appropriate internal type, eg, Double for a double field. The first column has sqlIndex==1. This uses the LocaleWrapper class to appropriately source the locale.
        Overrides:
        queryFieldValue in class SFieldString
        Returns:
        a Locale object or null if the ResultSet has no value at the requested index.
        Throws:
        java.lang.Exception
      • convertToDataSetFieldType

        protected java.lang.Object convertToDataSetFieldType​(java.lang.Object raw)
        Description copied from class: SFieldMeta
        Converts the parameter from the raw type parameter to the correct internal Object type that is stored in the data set. Returns the object if no conversion necessary. Used by SRecordInstance.setObject etc., Not getObject.
        Overrides:
        convertToDataSetFieldType in class SFieldString
      • writeFieldValue

        public java.lang.Object writeFieldValue​(java.lang.Object value)
        Description copied from class: SFieldMeta
        Converts a single value from internal representation to database representation. Used primarily by the writeFieldValue above, but also used for converting optimistic lock values in SRecordInstance.flush.

        Overidden by SFieldBoolean. (not by SFieldString).

        NOTE: This does NOT need to handle NULL values (those are handled seperately by SRecordInstance)

        Overrides:
        writeFieldValue in class SFieldMeta