public class BackendControl extends ERPObject<BackendControl>
A backend control object contains information retrieved from the ERP system. The information is only used for short-term editing purposes and is therefore not persisted to a database table.
Modifier and Type | Field and Description |
---|---|
static int |
ALPHA_NUMERIC
The data type for an alphanumeric field.
|
static int |
NUMERIC
The data type for a numeric field.
|
private static long |
serialVersionUID
The class' serialization version id.
|
ivHashCode, ivHashFlds, ivObjAttrs
Constructor and Description |
---|
BackendControl()
Constructs an
BackendControl object with all field values set to
null . |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getComments()
Returns the field's comments/help text.
|
int |
getDataType()
Returns the field's data type.
|
java.lang.String |
getDescription()
Returns the field's description.
|
java.lang.String |
getGroupCode()
Returns the field's group code.
|
boolean |
getIsValueRequired()
Returns the field's value required flag.
|
int |
getLength()
Returns the field's data maximum length.
|
java.lang.String |
getName()
Returns the field's name.
|
java.util.ArrayList<java.lang.String> |
getValidValues()
Returns the field's valid values.
|
java.lang.String |
getValidValuesStr()
Returns the field's valid values undelimited string.
|
java.lang.String |
getValue()
Returns the field's value.
|
void |
setComments(java.lang.String value)
Sets the field's comments/help text.
|
void |
setDataType(int value)
Sets the field's data type.
|
void |
setDescription(java.lang.String value)
Sets the field's description.
|
void |
setGroupCode(java.lang.String value)
Sets the field's group code.
|
void |
setIsValueRequired(boolean value)
Sets the field's value required flag.
|
void |
setLength(int value)
Sets the field's data maximum length.
|
void |
setName(java.lang.String value)
Sets the field's name.
|
void |
setValidValues(java.util.ArrayList<java.lang.String> value)
Sets the field's valid values.
|
void |
setValidValuesStr(java.lang.String value)
Sets the field's valid values undelimited string.
|
void |
setValue(java.lang.String value)
Sets the field's value.
|
cloneMapAttributes, formatValue, formatValue, getHashFields, getMapArrayList, getMapAttributes, getMapBigDecimal, getMapBoolean, getMapDate, getMapDouble, getMapInteger, getMapLong, getMapMapped, getMapObject, getMapShort, getMapString, getMapString, getMapStringBuffer, getMapStringBuilder, getMapTime, getMapTimestamp, getMapVector, hashCode, setHashFields, setMap, setMap, setMap, setMap, setMap, setMap, setMap, setMap, setMap, setMap, setMap, setMap, setMap, setMap, setMap, setMapAttributes, setMapObject, setMapTime, setMapTimestamp, toStringArray
private static final long serialVersionUID
public static final int NUMERIC
public static final int ALPHA_NUMERIC
public BackendControl()
BackendControl
object with all field values set to
null
.public java.lang.String getGroupCode()
public void setGroupCode(java.lang.String value)
value
- (String) The field's group code.public java.lang.String getName()
public void setName(java.lang.String value)
value
- (String) The field's name.public int getDataType()
public void setDataType(int value)
value
- (int) The field's data type.public int getLength()
public void setLength(int value)
value
- (int) The field's data maximum length.public java.lang.String getDescription()
public void setDescription(java.lang.String value)
value
- (String) The field's description.public java.util.ArrayList<java.lang.String> getValidValues()
null
if no values
exist for the control.public void setValidValues(java.util.ArrayList<java.lang.String> value)
value
- (ArrayList) The field's valid values.public java.lang.String getValidValuesStr()
public void setValidValuesStr(java.lang.String value)
value
- (String) The field's valid undelimited string.public java.lang.String getValue()
public void setValue(java.lang.String value)
value
- (String) The field's value.public boolean getIsValueRequired()
public void setIsValueRequired(boolean value)
value
- (boolean) The field's value required flag.public java.lang.String getComments()
public void setComments(java.lang.String value)
value
- (String) The field's comments/help text.