Interface IValueInfo
-
public interface IValueInfo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDistributionSeparator()
String
getFieldGuid()
de.uplanet.lucy.server.renderer.IFormat
getFormat()
String
getGuid()
String
getName()
de.uplanet.lucy.types.RENDERING_TYPE
getRenderingType()
String
getTitle()
String
getType()
de.uplanet.lucy.types.UP_TYPE
getUPType()
boolean
isDistributionType()
boolean
isFileOrImageType()
boolean
isSpecialType()
-
-
-
Method Detail
-
getName
String getName()
- Returns:
- The control name (could be empty).
-
getTitle
String getTitle()
- Returns:
- The title (could be empty).
-
getFieldGuid
String getFieldGuid()
- Returns:
- The field GUID (could be
null
)
-
getGuid
String getGuid()
- Returns:
- The GUID (not
null
)
-
getType
String getType()
- Returns:
- The field type (if getFieldGuid() is
null
then string will be returned)
-
getUPType
de.uplanet.lucy.types.UP_TYPE getUPType()
- Returns:
- The field type (if getFieldGuid() is
null
then UP_TYPE.STRING will be returned)
-
getFormat
de.uplanet.lucy.server.renderer.IFormat getFormat()
- Returns:
- The format (could be
null
)
-
getRenderingType
de.uplanet.lucy.types.RENDERING_TYPE getRenderingType()
- Returns:
- For a date or a time type the sub time is different to the getType() result.
-
isSpecialType
boolean isSpecialType()
- Returns:
true
if the column is an distribution control column
-
isDistributionType
boolean isDistributionType()
- Returns:
true
if the column is an distribution control column
-
getDistributionSeparator
String getDistributionSeparator()
- Returns:
- The separator used to separate the distribution items.
-
isFileOrImageType
boolean isFileOrImageType()
- Returns:
true
if column is a image or file type.
-
-