Skip to content

Commit

Permalink
Adição de exemplos ao SimpleDateFormat
Browse files Browse the repository at this point in the history
  • Loading branch information
brunogasparetto committed Jul 11, 2021
1 parent df04251 commit 86e52b9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions fluig.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5230,6 +5230,13 @@ declare namespace java.text {
/**
* Cria um novo formatador de datas com o padrão indicado
*
* Exemplos:
*
* - "dd/MM/yyyy" -> data no formato pt-BR
* - "yyyy-MM-dd" -> data no formato ISO
* - "HH:mm" -> Hora (24h) e minuto
* - "yyyy-MM-dd'T'HH:mm:ss.SSSZ" -> Data completa (Ex: 2021-07-04T12:08:56.235-0700)
*
* @tutorial https://docs.oracle.com/javase/8/docs/api/java/text/SimpleDateFormat.html
*/
constructor(formato: string);
Expand Down

0 comments on commit 86e52b9

Please sign in to comment.