Package lumis.content.wizard
Interface ICreateParams.IField
-
- Enclosing interface:
- ICreateParams
public static interface ICreateParams.IField
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
ICreateParams.IField.IDatabaseValues
Represents the field options that will be read from the database.
-
Field Summary
Fields Modifier and Type Field Description static String
FIELD_KIND_NORMAL
static String
FIELD_KIND_VERSION_ACTIVE
static String
FIELD_KIND_VERSION_CONTENT_ID
static String
FIELD_KIND_VERSION_NUMBER
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ICreateParams.IField.IDatabaseValues
getDatabaseValues()
Returns the database values configuration for this field.String
getDataType()
String
getDefaultValue()
String
getId()
String
getKind()
int
getMaxLength()
String
getName()
Map<String,String>
getOptions()
Return the map of options of the field.String
getPattern()
boolean
isIntroduction()
boolean
isKeywords()
boolean
isPrimaryKey()
boolean
isPrimaryName()
boolean
isRequired()
boolean
isSearchable()
-
-
-
Field Detail
-
FIELD_KIND_NORMAL
static final String FIELD_KIND_NORMAL
- See Also:
- Constant Field Values
-
FIELD_KIND_VERSION_ACTIVE
static final String FIELD_KIND_VERSION_ACTIVE
- See Also:
- Constant Field Values
-
FIELD_KIND_VERSION_NUMBER
static final String FIELD_KIND_VERSION_NUMBER
- See Also:
- Constant Field Values
-
FIELD_KIND_VERSION_CONTENT_ID
static final String FIELD_KIND_VERSION_CONTENT_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
getDataType
String getDataType()
-
getId
String getId()
-
getName
String getName()
-
getKind
String getKind()
-
isPrimaryKey
boolean isPrimaryKey()
-
isPrimaryName
boolean isPrimaryName()
-
isIntroduction
boolean isIntroduction()
-
isKeywords
boolean isKeywords()
-
isSearchable
boolean isSearchable()
-
isRequired
boolean isRequired()
-
getDefaultValue
String getDefaultValue()
-
getOptions
Map<String,String> getOptions()
Return the map of options of the field. WhengetDatabaseValues()
returns some value (notnull
), this call must returnnull
.- Returns:
- the map of options of the field.
- Since:
- 6.2.0
-
getDatabaseValues
ICreateParams.IField.IDatabaseValues getDatabaseValues()
Returns the database values configuration for this field. WhengetOptions()
returns some value (notnull
), this call must returnnull
.- Returns:
- the database values configuration for this field.
- Since:
- 6.2.1
-
getPattern
String getPattern()
-
getMaxLength
int getMaxLength()
-
-