Interface IValueInfo
-
public interface IValueInfo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDistributionSeparator()StringgetFieldGuid()de.uplanet.lucy.server.renderer.IFormatgetFormat()StringgetGuid()StringgetName()de.uplanet.lucy.types.RENDERING_TYPEgetRenderingType()StringgetTitle()StringgetType()de.uplanet.lucy.types.UP_TYPEgetUPType()booleanisDistributionType()booleanisFileOrImageType()booleanisSpecialType()
-
-
-
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
nullthen string will be returned)
-
getUPType
de.uplanet.lucy.types.UP_TYPE getUPType()
- Returns:
- The field type (if getFieldGuid() is
nullthen 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:
trueif the column is an distribution control column
-
isDistributionType
boolean isDistributionType()
- Returns:
trueif the column is an distribution control column
-
getDistributionSeparator
String getDistributionSeparator()
- Returns:
- The separator used to separate the distribution items.
-
isFileOrImageType
boolean isFileOrImageType()
- Returns:
trueif column is a image or file type.
-
-