Interface MendixInteger

All Superinterfaces:
IMendixObjectMember<Integer>

public interface MendixInteger extends IMendixObjectMember<Integer>
Provides the interface for a Mendix attribute with type Integer.
  • Method Details

    • getValueFromString

      Integer getValueFromString(String stringValue)
      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 interface IMendixObjectMember<Integer>
      Parameters:
      stringValue - the string representation of the Integer value
      Returns:
      the Integer value parsed from the string