Enum HarmBlockThreshold.Known
-
- All Implemented Interfaces:
public enum HarmBlockThreshold.KnownEnum representing the known values for HarmBlockThreshold.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HARM_BLOCK_THRESHOLD_UNSPECIFIEDThe harm block threshold is unspecified.
BLOCK_LOW_AND_ABOVEBlock content with a low harm probability or higher.
BLOCK_MEDIUM_AND_ABOVEBlock content with a medium harm probability or higher.
BLOCK_ONLY_HIGHBlock content with a high harm probability.
BLOCK_NONEDo not block any content, regardless of its harm probability.
OFFTurn off the safety filter entirely.
-
Method Summary
Modifier and Type Method Description static Array<HarmBlockThreshold.Known>values()Returns an array containing the constants of this enum type, in the order they're declared. static HarmBlockThreshold.KnownvalueOf(String name)Returns the enum constant of this type with the specified name. -
-
Method Detail
-
values
static Array<HarmBlockThreshold.Known> values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.
- Returns:
an array containing the constants of this enum type, in the order they're declared
-
valueOf
static HarmBlockThreshold.Known valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
- Returns:
the enum constant with the specified name
-
-
-
-