com.github.twitch4j.helix.domain.Game Maven / Gradle / Ivy
The newest version!
package com.github.twitch4j.helix.domain;
import lombok.AccessLevel;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.Setter;
import java.util.regex.Pattern;
/**
* Game
*/
@Data
@Setter(AccessLevel.PRIVATE)
@NoArgsConstructor
public class Game {
/** Game ID. */
private String id;
/**
* The ID that IGDB uses to identify this game, or an empty string.
*/
private String igdbId;
/** Game name. */
private String name;
/** Template URL for the game’s box art. */
private String boxArtUrl;
/**
* Gets the game's box art url for specific dimensions
*
* @param width game's box art width
* @param height game's box art height
* @return String
*/
public String getBoxArtUrl(Integer width, Integer height) {
return boxArtUrl.replaceAll(Pattern.quote("{width}"), width.toString()).replaceAll(Pattern.quote("{height}"), height.toString());
}
}