JavaUtil
Content Type: Module
Categories:
Overview
A useful set of Mendix JavaActions especially for Brazilian developers.
Documentation
Demo url
Description
A useful set of Mendix JavaActions especially for Brazilian developers.
Available JavaActions:
FormatCNPJ
Formats a 14 length String in the pattern "99.999.999/9999-99" like the Brazilians companies’ CNPJ number. If the String contains non numerical characters, it will remove them before formatting. If the String's length > 14, it will return it.
FormatCPF
Formats a 11 length String in the pattern "999.999.999-99" like the Brazilians citizens’ CPF number. If the String contains non numerical characters, it will remove them before formatting. If the String's length > 11, it will return it.
GetDatesBetween
Returns the list of DateEntity between the two selected dates: startDate endDate Filtering by the selected week days: sunday monday tuesday wednesday thursday friday saturday
GetNameAndSurname
Receives a String that represents the person's full name and returns the equivalent of the person's name and surname. Breaks the String through spaces and returns the first token concatenated with the second. If the second token is 3 or less characters long, returns the third token as well. Eg. "Edgar Fabiano Souza Filho" => "Edgar Fabiano" "Fernanda de Melo Garcia" => "Fernanda de Melo" "André dos Santos Pereira Lima" => "André dos Santos"
MendixLogout
Logs out the current user from session.
RemoveNonNumber
Removes any non numerical character from a String using regular expression. If the String is empty or null, it will return it.
ValidateCNPJ
Using the mod11 algorithm it verifies if the CNPJ is a valid one by it's verifier digits
ValidateCPF
Using the mod11 algorithm it verifies if the CPF is a valid one by it's verifier digits
Please see the documentation for more details.
Dependencies [optional]
- Mendix Studio Pro 8.9+
Releases
Version: 1.0.0
Framework Version: 8.9.0
Release Notes: Adding Java Actions.