Class LocaleField
- java.lang.Object
- 
- simpleorm.dataset.SFieldMeta
- 
- simpleorm.dataset.SFieldScalar
- 
- simpleorm.dataset.SFieldString
- 
- com.inductiveautomation.ignition.gateway.localdb.persistence.LocaleField
 
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class LocaleField extends SFieldString - See Also:
- Serialized Form
 
- 
- 
Field Summary- 
Fields inherited from class simpleorm.dataset.SFieldScalarsqlDataTypeOverride, theGenerator
 - 
Fields inherited from class simpleorm.dataset.SFieldMetaquoteName
 
- 
 - 
Constructor SummaryConstructors Constructor Description LocaleField(SRecordMeta meta, java.lang.String fieldName, SFieldFlags... pvals)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description LocaleFieldaddValidator(org.apache.wicket.validation.IValidator wicketValidator)protected java.lang.ObjectconvertToDataSetFieldType(java.lang.Object raw)Converts the parameter from the raw type parameter to the correct internal Object type that is stored in the data set.java.lang.StringdefaultSqlDataType()The default data type if not overriden by overrideSqlDataType.java.util.LocalegetDefault()FormMetagetFormMeta()booleanisFKeyCompatible(SFieldScalar field)intjavaSqlType()java.lang.ObjectqueryFieldValue(java.sql.ResultSet rs, int sqlIndex)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.LocaleFieldsetDefault(java.util.Locale value)LocaleFieldsetIndexed(boolean value)LocaleFieldsetUnique(boolean value)java.lang.ObjectwriteFieldValue(java.lang.Object value)Converts a single value from internal representation to database representation.- 
Methods inherited from class simpleorm.dataset.SFieldScalargetColumnName, getGeneratorMode, getGeneratorParameter, getMaxSize, getReferences, getTheGenerator, isForeignKey, isGenerated, isMandatory, isNotOptimisticLocked, isPrimary, overrideSqlDataType, setGeneratorMode, setMaxSize, setTheGenerator, toLongerString
 - 
Methods inherited from class simpleorm.dataset.SFieldMetaaddFlag, addValidator, doValidate, equals, getFieldName, getFlags, getRecordMeta, getUserProperties, getUserProperty, getValidators, hashCode, isDescriptive, isUnqueried, nextGeneratedValue, putUserProperty, readResolve, setQuoted, toString, writeFieldValue
 
- 
 
- 
- 
- 
Constructor Detail- 
LocaleFieldpublic LocaleField(SRecordMeta meta, java.lang.String fieldName, SFieldFlags... pvals) 
 
- 
 - 
Method Detail- 
getFormMetapublic FormMeta getFormMeta() 
 - 
getDefaultpublic java.util.Locale getDefault() 
 - 
setDefaultpublic LocaleField setDefault(java.util.Locale value) 
 - 
setIndexedpublic LocaleField setIndexed(boolean value) 
 - 
setUniquepublic LocaleField setUnique(boolean value) 
 - 
addValidatorpublic LocaleField addValidator(org.apache.wicket.validation.IValidator wicketValidator) 
 - 
defaultSqlDataTypepublic java.lang.String defaultSqlDataType() Description copied from class:SFieldScalarThe 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:
- defaultSqlDataTypein class- SFieldString
 
 - 
javaSqlTypepublic int javaSqlType() - Overrides:
- javaSqlTypein class- SFieldString
- Returns:
- int constant from java.sql.Types, used for setting sql datatype with null values
 
 - 
isFKeyCompatiblepublic boolean isFKeyCompatible(SFieldScalar field) - Overrides:
- isFKeyCompatiblein class- SFieldString
 
 - 
queryFieldValuepublic java.lang.Object queryFieldValue(java.sql.ResultSet rs, int sqlIndex) throws java.lang.ExceptionIssues 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 theLocaleWrapperclass to appropriately source the locale.- Overrides:
- queryFieldValuein class- SFieldString
- Returns:
- a Localeobject or null if theResultSethas no value at the requested index.
- Throws:
- java.lang.Exception
 
 - 
convertToDataSetFieldTypeprotected java.lang.Object convertToDataSetFieldType(java.lang.Object raw) Description copied from class:SFieldMetaConverts 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 bySRecordInstance.setObjectetc., Not getObject.- Overrides:
- convertToDataSetFieldTypein class- SFieldString
 
 - 
writeFieldValuepublic java.lang.Object writeFieldValue(java.lang.Object value) Description copied from class:SFieldMetaConverts 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:
- writeFieldValuein class- SFieldMeta
 
 
- 
 
-