Enum JsonBlurEffect
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum JsonBlurEffect extends Enum<JsonBlurEffect>
The blur effect style. iOS only.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXTRA_LIGHTThe area of the view is lighter than the underlying view.
LIGHTThe area of the view is the same approximate lightness of the underlying view.
DARKThe area of the view is darker than the underlying view.
REGULARA regular blur style that adapts to the user interface style.
PROMINENTA blur style for making content more prominent that adapts to the user interface style.
SYSTEM_ULTRA_THIN_MATERIALAn adaptable blur effect that creates the appearance of an ultra-thin material. iOS13+.
SYSTEM_THIN_MATERIALAn adaptable blur effect that creates the appearance of a thin material. iOS13+.
SYSTEM_MATERIALAn adaptable blur effect that create the appearance of a material with normal thickness. Defaults on iOS13 and more. iOS13+.
SYSTEM_THICK_MATERIALAn adaptable blur effect that creates the appearance of a material that's thicker than normal. iOS13+.
SYSTEM_CHROME_MATERIALAn adaptable blur effect that creates the appearance of the system chrome. iOS13+.
SYSTEM_ULTRA_THIN_MATERIAL_LIGHTA blur effect that creates the appearance of an ultra-thin material and is always light. iOS13+.
SYSTEM_THIN_MATERIAL_LIGHTA blur effect that creates the appearance of a thin material and is always light. iOS13+.
SYSTEM_MATERIAL_LIGHTA blur effect that creates the appearance of a material with normal thickness and is always light. iOS13+.
SYSTEM_THICK_MATERIAL_LIGHTA blur effect that creates the appearance of a material that’s thicker than normal and is always light. iOS13+.
SYSTEM_CHROME_MATERIAL_LIGHTA blur effect that creates the appearance of the system chrome and is always light. iOS13+
SYSTEM_ULTRA_THIN_MATERIAL_DARKA blur effect that creates the appearance of an ultra-thin material and is always dark. iOS13+
SYSTEM_THIN_MATERIAL_DARKA blur effect that creates the appearance of a thin material and is always dark. iOS13+
SYSTEM_MATERIAL_DARKA blur effect that creates the appearance of a material with normal thickness and is always dark. iOS13+.
SYSTEM_THICK_MATERIAL_DARKA blur effect that creates the appearance of a material that’s thicker than normal and is always dark. iOS13+.
SYSTEM_CHROME_MATERIAL_DARKA blur effect that creates the appearance of the system chrome and is always dark. iOS13+
-
Method Summary
Modifier and Type Method Description final JsonBlurEffectvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<JsonBlurEffect>values()Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final JsonBlurEffect valueOf(String value)
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.)
-
values
final Array<JsonBlurEffect> 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.
-
-
-
-