{{theTime}}

Search This Blog

Total Pageviews

ImmutableList Example

private ImmutableList<String> getServerProps(){
      ImmutableList.Builder<String> serverProps = ImmutableList.builder();
      serverProps.add(String.format("Azure", "Yes"));
      serverProps.add(String.format("AWS", "Yes"));
      serverProps.add("DisasterRecovery", "Yes");
   
return serverProps ;
}

No comments:

Java Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...