Class CommonImageBackground
java.lang.Object
de.xima.fc.prompt.service.support.CommonImageBackground
Enumeration for common types of image backgrounds. Certain task types such as "generate image" or "edit image"
produce image files. Some prompt services allow the user to select the background of that image file. Implementations
are encouraged to use these constants to increase interoperability between different prompt service implementations,
but are not required to do so.
- Since:
- 8.5.0
- See Also:
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic StringlocalizedDescription(Locale locale, String commonImageBackground) Gets the localized description for the given common image background.static StringlocalizedLabel(Locale locale, String commonImageBackground) Gets the localized label for the given common image background.
-
Field Details
-
OPAQUE
-
TRANSPARENT
-
-
Method Details
-
localizedDescription
Gets the localized description for the given common image background. The value should be one of the constants defined in this class. When an unknown value is given, returns an implementation-defined default description.- Parameters:
locale- The locale for which to localize the description.commonImageBackground- The common image background constant, must be one of the constants defined in this class.- Returns:
- The localized description for the given common image background.
-
localizedLabel
Gets the localized label for the given common image background. The value should be one of the constants defined in this class. If any other value is given, returns an implementation-defined default label.- Parameters:
locale- The locale for which to localize the label.commonImageBackground- The common image background constant, must be one of the constants defined in this class.- Returns:
- The localized label for the given common image background.
-