Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 534 Bytes

chapter2_3_3.md

File metadata and controls

12 lines (9 loc) · 534 Bytes

KeyValueEntity

O KeyValueEntity é a estrutura mais simples, uma vez que ele representa uma tupla, uma chave para o seu respectivo valor. Sendo que o tipo não se restringe apenas para String. Assim, como os outros ele tem métodos para acessar os métodos do Value.

KeyValueEntity<String> entity = KeyValueEntity.of("key", Value.of(123));
KeyValueEntity<Integer> entity2 = KeyValueEntity.of(12, "Text");
String key = entity.getKey();
Value value = entity.getValue();
Integer integer = entity.get(Integer.class);