Interface MendixInteger
- All Superinterfaces:
IMendixObjectMember<Integer>
Provides the interface for a Mendix attribute with type Integer.
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.mendix.systemwideinterfaces.core.IMendixObjectMember
IMendixObjectMember.MemberState, IMendixObjectMember.MemberValueState
-
Method Summary
Modifier and TypeMethodDescriptiongetValueFromString
(String stringValue) Parses and returns a value for this object member from a string.Methods inherited from interface com.mendix.systemwideinterfaces.core.IMendixObjectMember
getMemberValueState, getName, getOriginalValue, getState, getValue, hasReadAccess, hasWriteAccess, isChanged, isValueChanged, isVirtual, parseValueFromString, parseValueToString, setValue, setValue, toString
-
Method Details
-
getValueFromString
Parses and returns a value for this object member from a string.If the string is null or empty returns null, otherwise uses
Integer.parseInt(String)
to convert the string to a Integer value.- Specified by:
getValueFromString
in interfaceIMendixObjectMember<Integer>
- Parameters:
stringValue
- the string representation of the Integer value- Returns:
- the Integer value parsed from the string
-