Class SFieldBooleanChar

  • All Implemented Interfaces:
    java.io.Serializable

    public class SFieldBooleanChar
    extends SFieldBoolean
    Booleans which are represented by a string. Constructor determine whether "T", "Y", "Yes" etc.
    See Also:
    Serialized Form
    • Constructor Detail

      • SFieldBooleanChar

        public SFieldBooleanChar​(SRecordMeta meta,
                                 java.lang.String columnName,
                                 java.lang.String trueStr,
                                 java.lang.String falseStr,
                                 SFieldFlags... pvals)
    • Method Detail

      • queryFieldValue

        public java.lang.Object queryFieldValue​(java.sql.ResultSet rs,
                                                int sqlIndex)
                                         throws java.lang.Exception
        Converts from database representation to internal representation
        Specified by:
        queryFieldValue in class SFieldMeta
        Throws:
        java.lang.Exception
      • 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
      • 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.
        Specified by:
        defaultSqlDataType in class SFieldScalar
      • javaSqlType

        public int javaSqlType()
        Specified by:
        javaSqlType in class SFieldScalar
        Returns:
        int constant from java.sql.Types, used for setting sql datatype with null values
      • convertToDataSetFieldType

        protected java.lang.Boolean 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.
        Specified by:
        convertToDataSetFieldType in class SFieldMeta