📄 imagethumbnail.java
字号:
package com.yahoo.search;import java.math.BigInteger;/** * Image thumbnail. * * @author Ryan Kennedy. */public interface ImageThumbnail { /** * The URL for the image thumbnail. * * @return The URL for the image thumbnail. */ String getUrl(); /** * The height of the image thumbnail in pixels. <b>This field is optional.</b> * * @return The height of the image thumbnail in pixels. */ BigInteger getHeight(); /** * The width of the image thumbnail in pixels. <b>This field is optional.</b> * * @return The width of the image thumbnail in pixels. */ BigInteger getWidth();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -