Interface MendixDateTime
- All Superinterfaces:
- IMendixObjectMember<Date>
Provides the interface for a Mendix attribute with type Date and Time.
- 
Nested Class SummaryNested classes/interfaces inherited from interface com.mendix.systemwideinterfaces.core.IMendixObjectMemberIMendixObjectMember.MemberState, IMendixObjectMember.MemberValueState
- 
Method SummaryModifier and TypeMethodDescriptiongetValueFromString(String stringValue) If the stringValue is null or empty return null otherwise, parse the stringValue usingLong.parseLong(String)and create aDateusingDate(long).booleanReturns whether the date and time are represented in the local time zone or not.Methods inherited from interface com.mendix.systemwideinterfaces.core.IMendixObjectMembergetMemberValueState, getName, getOriginalValue, getState, getValue, hasReadAccess, hasWriteAccess, isChanged, isValueChanged, isVirtual, parseValueFromString, parseValueToString, setValue, setValue, toString
- 
Method Details- 
shouldLocalizeboolean shouldLocalize()Returns whether the date and time are represented in the local time zone or not.- Returns:
- true if the date and time is in the local time zone; false if it is UTC
 
- 
getValueFromStringIf the stringValue is null or empty return null otherwise, parse the stringValue usingLong.parseLong(String)and create aDateusingDate(long).- Specified by:
- getValueFromStringin interface- IMendixObjectMember<Date>
- Parameters:
- stringValue- the string to parse
- Returns:
- parsed value
 
 
-