public static enum ImageContent.DetailLevel extends Enum<ImageContent.DetailLevel>
Image
.Enum Constant and Description |
---|
AUTO
Auto detail.
|
HIGH
High detail.
|
LOW
Low detail.
|
Modifier and Type | Method and Description |
---|---|
static ImageContent.DetailLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageContent.DetailLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageContent.DetailLevel LOW
public static final ImageContent.DetailLevel HIGH
public static final ImageContent.DetailLevel AUTO
public static ImageContent.DetailLevel[] values()
for (ImageContent.DetailLevel c : ImageContent.DetailLevel.values()) System.out.println(c);
public static ImageContent.DetailLevel 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 nullCopyright © 2024. All rights reserved.