public static enum BingImageDataset.ImageDataSourceQuery.Size extends Enum<BingImageDataset.ImageDataSourceQuery.Size>
Enum Constant and Description |
---|
All
Do not filter by size.
|
Large
Return images that are 500x500 pixels or larger
|
Medium
Return images that are greater than or equal to 200x200 pixels
but less than 500x500 pixels
|
Small
Return images that are less than 200x200 pixels
|
Wallpaper
Return wallpaper images.
|
Modifier and Type | Method and Description |
---|---|
static BingImageDataset.ImageDataSourceQuery.Size |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BingImageDataset.ImageDataSourceQuery.Size[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BingImageDataset.ImageDataSourceQuery.Size Small
public static final BingImageDataset.ImageDataSourceQuery.Size Medium
public static final BingImageDataset.ImageDataSourceQuery.Size Large
public static final BingImageDataset.ImageDataSourceQuery.Size Wallpaper
public static final BingImageDataset.ImageDataSourceQuery.Size All
public static BingImageDataset.ImageDataSourceQuery.Size[] values()
for (BingImageDataset.ImageDataSourceQuery.Size c : BingImageDataset.ImageDataSourceQuery.Size.values()) System.out.println(c);
public static BingImageDataset.ImageDataSourceQuery.Size valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null