Package com.saperion.ngc.model.resultset
Class ResultProperty
- java.lang.Object
-
- com.saperion.ngc.model.resultset.ResultProperty
-
- All Implemented Interfaces:
java.io.Serializable
public class ResultProperty extends java.lang.Object implements java.io.Serializable
Bean that holds information about a result property. Represents a cell in a result set.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResultProperty(com.saperion.intf.SaPropertyValue value, com.saperion.ngc.iform.xml.EditFieldType fieldType)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDatabaseFieldName()
java.lang.String
getDisplayName()
com.saperion.ngc.iform.xml.EditFieldType
getFieldType()
com.saperion.intf.SaPropertyValue
getValue()
boolean
isMultiValue()
-
-
-
Method Detail
-
getValue
public com.saperion.intf.SaPropertyValue getValue()
- Returns:
- property value
-
getDisplayName
public java.lang.String getDisplayName()
- Returns:
- property display name
-
getDatabaseFieldName
public java.lang.String getDatabaseFieldName()
- Returns:
- property database name
-
getFieldType
public com.saperion.ngc.iform.xml.EditFieldType getFieldType()
- Returns:
- field type of this property
-
isMultiValue
public boolean isMultiValue()
- Returns:
- Is multivalue
-
-