public class TextImportSettings extends TextSettings
DataSource.recordsFromText()
.config, configOnly, factoryCreated, factoryProperties, id, scClassName
Constructor and Description |
---|
TextImportSettings() |
TextImportSettings(com.google.gwt.core.client.JavaScriptObject jsObj) |
Modifier and Type | Method and Description |
---|---|
com.google.gwt.core.client.JavaScriptObject |
create() |
java.lang.Boolean |
getHasHeaderLine()
If set to true, the data is assumed to have a header line that lists titles for each field, which should be parsed.
|
static TextImportSettings |
getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj) |
TextImportSettings |
setHasHeaderLine(java.lang.Boolean hasHeaderLine)
If set to true, the data is assumed to have a header line that lists titles for each field, which should be parsed.
|
getEscapingMode, getFieldList, getFieldSeparator, getJsObj, getLineSeparator, getOrCreateJsObj, isCreated, setEscapingMode, setFieldList, setFieldSeparator, setJavaScriptObject, setLineSeparator
addDynamicProperty, addDynamicProperty, addDynamicProperty, addDynamicProperty, applyFactoryProperties, asSGWTComponent, clearDynamicProperty, createJsObj, destroy, doAddHandler, doInit, error, error, errorIfNotCreated, fireEvent, getAttribute, getAttributeAsBoolean, getAttributeAsDate, getAttributeAsDouble, getAttributeAsElement, getAttributeAsFloat, getAttributeAsInt, getAttributeAsJavaScriptObject, getAttributeAsMap, getAttributeAsString, getAttributeAsStringArray, getClassName, getConfig, getHandlerCount, getID, getRef, getRuleScope, getScClassName, getTestInstance, hasAutoAssignedID, hasDynamicProperty, internalSetID, internalSetID, isConfigOnly, isFactoryCreated, onBind, onInit, registerID, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setConfig, setConfigOnly, setFactoryCreated, setID, setProperty, setProperty, setProperty, setProperty, setRuleScope, setScClassName
public TextImportSettings()
public TextImportSettings(com.google.gwt.core.client.JavaScriptObject jsObj)
public static TextImportSettings getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj)
public com.google.gwt.core.client.JavaScriptObject create()
create
in class TextSettings
public TextImportSettings setHasHeaderLine(java.lang.Boolean hasHeaderLine) throws java.lang.IllegalStateException
recordsFromText
will then try to find a same-named DataSourceField by checking parsed titles against
both DataSourceField.title
and DataSourceField.name
(titles first), doing a case-insensitive
comparison with any leading or trailing whitespace removed from the title. If no field matches, data will appear in the
returned Records under the exact title parsed from the header line.
If this approach will not find appropriate
DataSourceFields, parse the header line before calling recordsFromText()
, and provide the list of field
names to use when parsing data as TextSettings.fieldList
.
hasHeaderLine
- New hasHeaderLine value. Default value is falseTextImportSettings
instance, for chaining setter callsjava.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic java.lang.Boolean getHasHeaderLine()
recordsFromText
will then try to find a same-named DataSourceField by checking parsed titles against
both DataSourceField.title
and DataSourceField.name
(titles first), doing a case-insensitive
comparison with any leading or trailing whitespace removed from the title. If no field matches, data will appear in the
returned Records under the exact title parsed from the header line.
If this approach will not find appropriate
DataSourceFields, parse the header line before calling recordsFromText()
, and provide the list of field
names to use when parsing data as TextSettings.fieldList
.