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 java.lang.String
FIELD_KIND_NORMAL
static java.lang.String
FIELD_KIND_VERSION_ACTIVE
static java.lang.String
FIELD_KIND_VERSION_CONTENT_ID
static java.lang.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.java.lang.String
getDataType()
java.lang.String
getDefaultValue()
java.lang.String
getId()
java.lang.String
getKind()
int
getMaxLength()
java.lang.String
getName()
java.util.Map<java.lang.String,java.lang.String>
getOptions()
Return the map of options of the field.java.lang.String
getPattern()
boolean
isIntroduction()
boolean
isKeywords()
boolean
isPrimaryKey()
boolean
isPrimaryName()
boolean
isRequired()
boolean
isSearchable()
-
-
-
Field Detail
-
FIELD_KIND_NORMAL
static final java.lang.String FIELD_KIND_NORMAL
- See Also:
- Constant Field Values
-
FIELD_KIND_VERSION_ACTIVE
static final java.lang.String FIELD_KIND_VERSION_ACTIVE
- See Also:
- Constant Field Values
-
FIELD_KIND_VERSION_NUMBER
static final java.lang.String FIELD_KIND_VERSION_NUMBER
- See Also:
- Constant Field Values
-
FIELD_KIND_VERSION_CONTENT_ID
static final java.lang.String FIELD_KIND_VERSION_CONTENT_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
getDataType
java.lang.String getDataType()
-
getId
java.lang.String getId()
-
getName
java.lang.String getName()
-
getKind
java.lang.String getKind()
-
isPrimaryKey
boolean isPrimaryKey()
-
isPrimaryName
boolean isPrimaryName()
-
isIntroduction
boolean isIntroduction()
-
isKeywords
boolean isKeywords()
-
isSearchable
boolean isSearchable()
-
isRequired
boolean isRequired()
-
getDefaultValue
java.lang.String getDefaultValue()
-
getOptions
java.util.Map<java.lang.String,java.lang.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
java.lang.String getPattern()
-
getMaxLength
int getMaxLength()
-
-