Interface MendixAutoNumber
- All Superinterfaces:
IMendixObjectMember<Long>
Provides the interface for a Mendix attribute with type AutoNumber.
-
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, toString
-
Method Details
-
getValueFromString
Parses and returns a value for this object member from a string.If the stringValue is null returns null, otherwise uses
to convert stringValue to a Long value.Long.parseLong(String)
- Specified by:
getValueFromString
in interfaceIMendixObjectMember<Long>
- Parameters:
stringValue
- the string to parse- Returns:
- parsed value
-