📝JavaDoc
Java kod dokümanları, yorum satırları ve kod açıklamaları
Last updated
Was this helpful?
Java kod dokümanları, yorum satırları ve kod açıklamaları
Last updated
Was this helpful?
Was this helpful?
/**
* Gets URL
* @see <a href="https://android.yemreak.com/temel/http-istekleri">HTTPS istekleri ~ YEmreAk</a>
* @return Generated {@link #URL_TEMPLATE} with a random {@link #API_KEYS}
*/
private static String generateURL() {
int ix = new Random().nextInt(API_KEYS.length);
return String.format(URL_TEMPLATE, API_KEYS[ix]);
}