This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This protocol is well-defined by [RFC 5724][1] with the formal definition: | |
sms-uri = scheme ":" sms-hier-part [ "?" sms-fields ] | |
scheme = "sms" | |
sms-hier-part = sms-recipient *( "," sms-recipient ) | |
sms-recipient = telephone-subscriber ; defined in RFC 3966 | |
sms-fields = sms-field *( "&" sms-field ) | |
sms-field = sms-field-name "=" escaped-value | |
sms-field-name = "body" / sms-field-ext ; "body" MUST only appear once | |
sms-field-ext = 1*( unreserved ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package masterdev; | |
import java.util.HashMap; | |
import java.util.Map; | |
public class ExemplosMap { | |
public static void main(String[] args) { | |
Map<Long, Pessoa> mapa = new HashMap<>(); | |
Pessoa joao = new Pessoa(1L, "Joao"); |