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
{"page":1 | |
,"total":1 | |
,"records":138 | |
,"rows": | |
[{"giorniForfait":6 | |
,"interrogaLink":true | |
,"check":true | |
,"mediaUbicazione":90.4 | |
,"mediaQuindicina":136.9 | |
,"media":90.4,"cssClassName":"" |
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
public static void main(String[] args) throws JsonParseException, JsonMappingException, IOException { | |
File jsonFile = new File("user.json"); | |
Slot slots = null; | |
ObjectMapper mapper = new ObjectMapper(); | |
slots = mapper.readValue(jsonFile, Slot.class); | |
for (Row row : slots.getRows()) { | |
System.out.println(row.getIdApparecchio()); |
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
Attribute VB_Name = "Tab_Controller" | |
Option Explicit | |
'Tab Controller che serve ad implementare tutte le funzioni non presenti | |
'nella listobject. Possiamo definirla come un interfaccia per le tabelle | |
'Ritorna la ListObject di una tabella presenta all'interno del foglio, accetta in ingresso | |
'il nome della ListObject | |
Public Function GetLobj(name As String) As ListObject | |
Set GetLobj = Range(name).ListObject |