Class SpreadsheetConstants
- java.lang.Object
-
- org.eclipse.epsilon.emc.spreadsheets.SpreadsheetConstants
-
- Direct Known Subclasses:
ORMConstants
public class SpreadsheetConstants extends Object
This class holds various spreadsheet driver-wide constants.- Author:
- Martins Francis
-
-
Field Summary
Fields Modifier and Type Field Description static SpreadsheetDataType
DEFAULT_COL_DATATYPE
static String
DEFAULT_COL_DELIMITER
static boolean
DEFAULT_COL_MANY
static String
DEFAULT_DT_BOOLEAN
static String
DEFAULT_DT_DOUBLE
static String
DEFAULT_DT_FLOAT
static String
DEFAULT_DT_INTEGER
static String
DEFAULT_DT_STRING
static String
DEFAULT_DT_VALUE
static boolean
DEFAULT_REFERENCE_CASCADE
static boolean
DEFAULT_REFERENCE_MANY
static boolean
DEFAULT_WORKSHEET_CREATE_ON_LOAD
static boolean
DEFAULT_WORKSHEET_DT_STRICT
static String
DT_BOOLEAN
static String
DT_DOUBLE
static String
DT_FLOAT
static String
DT_INTEGER
static String
DT_STRING
static String
HEADER_NAME_SPLIT_CHARS
This application-wide constant is used to split the column names i.e.static String
PREFIX_COLUMN
static String
PREFIX_VALUE
static String
WORKSHEET_IGNORE_CHARS
This application-wide constant is used to identify worksheets that should be ignored when the model is loaded.
-
Constructor Summary
Constructors Constructor Description SpreadsheetConstants()
-
-
-
Field Detail
-
DT_STRING
public static final String DT_STRING
- See Also:
- Constant Field Values
-
DT_INTEGER
public static final String DT_INTEGER
- See Also:
- Constant Field Values
-
DT_BOOLEAN
public static final String DT_BOOLEAN
- See Also:
- Constant Field Values
-
DT_DOUBLE
public static final String DT_DOUBLE
- See Also:
- Constant Field Values
-
DT_FLOAT
public static final String DT_FLOAT
- See Also:
- Constant Field Values
-
DEFAULT_DT_STRING
public static final String DEFAULT_DT_STRING
- See Also:
- Constant Field Values
-
DEFAULT_DT_INTEGER
public static final String DEFAULT_DT_INTEGER
- See Also:
- Constant Field Values
-
DEFAULT_DT_BOOLEAN
public static final String DEFAULT_DT_BOOLEAN
- See Also:
- Constant Field Values
-
DEFAULT_DT_DOUBLE
public static final String DEFAULT_DT_DOUBLE
- See Also:
- Constant Field Values
-
DEFAULT_DT_FLOAT
public static final String DEFAULT_DT_FLOAT
- See Also:
- Constant Field Values
-
DEFAULT_DT_VALUE
public static final String DEFAULT_DT_VALUE
- See Also:
- Constant Field Values
-
DEFAULT_WORKSHEET_DT_STRICT
public static final boolean DEFAULT_WORKSHEET_DT_STRICT
- See Also:
- Constant Field Values
-
DEFAULT_WORKSHEET_CREATE_ON_LOAD
public static final boolean DEFAULT_WORKSHEET_CREATE_ON_LOAD
- See Also:
- Constant Field Values
-
DEFAULT_COL_DATATYPE
public static final SpreadsheetDataType DEFAULT_COL_DATATYPE
-
DEFAULT_COL_MANY
public static final boolean DEFAULT_COL_MANY
- See Also:
- Constant Field Values
-
DEFAULT_COL_DELIMITER
public static final String DEFAULT_COL_DELIMITER
- See Also:
- Constant Field Values
-
PREFIX_COLUMN
public static final String PREFIX_COLUMN
- See Also:
- Constant Field Values
-
PREFIX_VALUE
public static final String PREFIX_VALUE
- See Also:
- Constant Field Values
-
DEFAULT_REFERENCE_MANY
public static final boolean DEFAULT_REFERENCE_MANY
- See Also:
- Constant Field Values
-
DEFAULT_REFERENCE_CASCADE
public static final boolean DEFAULT_REFERENCE_CASCADE
- See Also:
- Constant Field Values
-
WORKSHEET_IGNORE_CHARS
public static final String WORKSHEET_IGNORE_CHARS
This application-wide constant is used to identify worksheets that should be ignored when the model is loaded. Any worksheet whose name starts with those characters will be ignored.- See Also:
- Constant Field Values
-
HEADER_NAME_SPLIT_CHARS
public static final String HEADER_NAME_SPLIT_CHARS
This application-wide constant is used to split the column names i.e. the name will be set to the value preceding characters defined here. For example, if definition is "-" and name in worksheet is "first-name" then name of column will be set to "first".- See Also:
- Constant Field Values
-
-